Skip to content

Commit 526506e

Browse files
michalrusMarcin Mazurek
authored andcommitted
Update cardano-node to 1.35.1 via cardano-wallet PR .patch
Which also includes `cardano-ledger` update
1 parent fbca2a8 commit 526506e

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

default.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ let
3737
chmod -R +w $out
3838
cd $out
3939
patch -p1 -i ${./nix/cardano-wallet--enable-aarch64-darwin.patch}
40+
patch -p1 -i ${pkgs.fetchurl {
41+
url = "https://github.com/input-output-hk/cardano-wallet/pull/3382.patch";
42+
sha256 = "1ii12g2zikv4197c7bsh4v5dc1jzygn1jap8xvnr7mvh3a09pdgn";
43+
}}
4044
'';
4145
};
4246
haskellNix = import sources."haskell.nix" {};

nix/sources.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"cardano-node": {
3-
"branch": "tags/1.35.0",
3+
"branch": "tags/1.35.1",
44
"description": null,
55
"homepage": null,
66
"owner": "input-output-hk",
77
"repo": "cardano-node",
8-
"rev": "9f1d7dc163ee66410d912e48509d6a2300cfa68a",
9-
"sha256": "06arx9hv7dn3qxfy83f0b6018rxbsvh841nvfyg5w6qclm1hddj7",
8+
"rev": "c75451f0ffd7a60b5ad6c4263891e6c8acac105a",
9+
"sha256": "1z0zv1i58ikmbqg878f9z573jkwp4lzhmmswshm6c96rq6lprzh8",
1010
"type": "tarball",
11-
"url": "https://github.com/input-output-hk/cardano-node/archive/9f1d7dc163ee66410d912e48509d6a2300cfa68a.tar.gz",
11+
"url": "https://github.com/input-output-hk/cardano-node/archive/c75451f0ffd7a60b5ad6c4263891e6c8acac105a.tar.gz",
1212
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
1313
},
1414
"cardano-shell": {

source/main/environment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const isSelfnode = checkIsSelfnode(NETWORK);
4646
const isDevelopment = checkIsDevelopment(NETWORK);
4747
const keepLocalClusterRunning = process.env.KEEP_LOCAL_CLUSTER_RUNNING;
4848
const API_VERSION = process.env.API_VERSION || 'dev';
49-
const NODE_VERSION = '1.35.0'; // TODO: pick up this value from process.env
49+
const NODE_VERSION = '1.35.1'; // TODO: pick up this value from process.env
5050

5151
const mainProcessID = get(process, 'ppid', '-');
5252
const rendererProcessID = process.pid;

0 commit comments

Comments
 (0)