Skip to content

Commit

Permalink
update core pup to 1.14.8
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeoneWeird committed Sep 23, 2024
1 parent 3031238 commit 888df19
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
18 changes: 12 additions & 6 deletions core/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifestVersion": 1,
"meta": {
"name": "Dogecoin Core",
"version": "0.0.2",
"version": "0.0.3",
"logoPath": "",
"shortDescription": "",
"longDescription": "Dogecoin Core runs a full core node on your dogebox"
Expand All @@ -13,7 +13,7 @@
"container": {
"build": {
"nixFile": "pup.nix",
"nixFileSha256": "bfab662e1845e2a67d9ea206f25f83346463327fc690f39568028993779417b3"
"nixFileSha256": "5588e722b7d7c8a2dfedeebbfbc3714e7f721607ddce8432e27aabd8dbd9fd7f"
},
"services": [
{
Expand Down Expand Up @@ -53,14 +53,18 @@
"name": "rpc",
"type": "http",
"port": 22555,
"interfaces": ["core-rpc"],
"interfaces": [
"core-rpc"
],
"listenOnHost": false
},
{
"name": "zmq",
"type": "tcp",
"port": 28332,
"interfaces": ["core-zmq"],
"interfaces": [
"core-zmq"
],
"listenOnHost": false
}
],
Expand All @@ -75,7 +79,9 @@
"name": "RPC",
"description": "Allows RPC access to the Dogecoin Core node",
"severity": 2,
"routes": ["/*"],
"routes": [
"/*"
],
"port": 0
}
]
Expand Down Expand Up @@ -139,4 +145,4 @@
"history": 30
}
]
}
}
4 changes: 2 additions & 2 deletions core/pup.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
let
storageDirectory = "/storage";
dogecoind_bin = pkgs.callPackage (pkgs.fetchurl {
url = "https://raw.githubusercontent.com/dogeorg/dogebox-nur-packages/29193479f4c65ab0adf825e311695f9af9c1f260/pkgs/dogecoin-core/default.nix";
sha256 = "sha256-Ook3gvhiE7Bk2E7adF6wubBMjBMK7lr98SWHMemXE6Q=";
url = "https://raw.githubusercontent.com/dogeorg/dogebox-nur-packages/f989575c285e6b7865c8185405a1abba54cc1964/pkgs/dogecoin-core/default.nix";
sha256 = "sha256-A3QVCK4OSIHIPZJNUShNsjTc+XffPdRBKeAzIvPeOPY=";
}) {
disableWallet = true;
disableGUI = true;
Expand Down

0 comments on commit 888df19

Please sign in to comment.