From 888df19742c5e223edcc0e7cb4e8297ac280eef3 Mon Sep 17 00:00:00 2001 From: Adam Brady Date: Mon, 23 Sep 2024 11:57:01 +1000 Subject: [PATCH] update core pup to 1.14.8 --- core/manifest.json | 18 ++++++++++++------ core/pup.nix | 4 ++-- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/core/manifest.json b/core/manifest.json index 9784d38..c9d1644 100644 --- a/core/manifest.json +++ b/core/manifest.json @@ -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" @@ -13,7 +13,7 @@ "container": { "build": { "nixFile": "pup.nix", - "nixFileSha256": "bfab662e1845e2a67d9ea206f25f83346463327fc690f39568028993779417b3" + "nixFileSha256": "5588e722b7d7c8a2dfedeebbfbc3714e7f721607ddce8432e27aabd8dbd9fd7f" }, "services": [ { @@ -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 } ], @@ -75,7 +79,9 @@ "name": "RPC", "description": "Allows RPC access to the Dogecoin Core node", "severity": 2, - "routes": ["/*"], + "routes": [ + "/*" + ], "port": 0 } ] @@ -139,4 +145,4 @@ "history": 30 } ] -} +} \ No newline at end of file diff --git a/core/pup.nix b/core/pup.nix index 66cedd3..b14e1b6 100644 --- a/core/pup.nix +++ b/core/pup.nix @@ -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;