Skip to content

Commit aee8a3b

Browse files
committed
Update cardano-node to 1.35.2
1 parent d4c5122 commit aee8a3b

File tree

5 files changed

+10
-80
lines changed

5 files changed

+10
-80
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
### Chores
1111

12+
- Updated cardano-node to 1.35.2 ([PR 3021](https://github.com/input-output-hk/daedalus/pull/3021))
1213
- Updated cardano-node to 1.35.1 ([PR 3012](https://github.com/input-output-hk/daedalus/pull/3012))
1314

1415
### Features

default.nix

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,6 @@ let
3737
chmod -R +w $out
3838
cd $out
3939
patch -p1 -i ${./nix/cardano-wallet--enable-aarch64-darwin.patch}
40-
patch -p1 -i ${builtins.path {
41-
# XXX: unfortunately, GitHub changed lengths of hashes in patches it returns for PRs,
42-
# that’s why we’re providing this patch inside our repo, with the same exact SHA-256,
43-
# to the one released in 4.12.0:
44-
path = ./nix/cardano-wallet--pr-3382--ledger-bug.patch;
45-
recursive = false;
46-
sha256 = "1ii12g2zikv4197c7bsh4v5dc1jzygn1jap8xvnr7mvh3a09pdgn";
47-
}}
4840
'';
4941
};
5042
haskellNix = import sources."haskell.nix" {};

nix/cardano-wallet--pr-3382--ledger-bug.patch

Lines changed: 0 additions & 63 deletions
This file was deleted.

nix/sources.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"cardano-node": {
3-
"branch": "tags/1.35.1",
3+
"branch": "tags/1.35.2",
44
"description": null,
55
"homepage": null,
66
"owner": "input-output-hk",
77
"repo": "cardano-node",
8-
"rev": "c75451f0ffd7a60b5ad6c4263891e6c8acac105a",
9-
"sha256": "1z0zv1i58ikmbqg878f9z573jkwp4lzhmmswshm6c96rq6lprzh8",
8+
"rev": "7612a245a6e2c51d0f1c3e0d65d7fe9363850043",
9+
"sha256": "01a5qdrmsag18s2mlf8axfbrag59j2fp6xyc89pwmzgs7x77ldsr",
1010
"type": "tarball",
11-
"url": "https://github.com/input-output-hk/cardano-node/archive/c75451f0ffd7a60b5ad6c4263891e6c8acac105a.tar.gz",
11+
"url": "https://github.com/input-output-hk/cardano-node/archive/7612a245a6e2c51d0f1c3e0d65d7fe9363850043.tar.gz",
1212
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
1313
},
1414
"cardano-shell": {
@@ -24,15 +24,15 @@
2424
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
2525
},
2626
"cardano-wallet": {
27-
"branch": "v2022-07-01",
27+
"branch": "master",
2828
"description": "Official Wallet Backend & API for Cardano decentralized",
2929
"homepage": null,
3030
"owner": "input-output-hk",
3131
"repo": "cardano-wallet",
32-
"rev": "211c357a91d48b30fdf77a3a169499b38822f9cd",
33-
"sha256": "0ii631ak757kjzs7jm625zfv2g28ffjrfkmgslxbbgvwpqxkdbaj",
32+
"rev": "7ed8f067dd6d5dc78e7353bf65ea5e3423cdfca8",
33+
"sha256": "1f9lwqi4qghaqi3754732h0cz98f7qbjhcx416jliqy6nibly6lp",
3434
"type": "tarball",
35-
"url": "https://github.com/input-output-hk/cardano-wallet/archive/211c357a91d48b30fdf77a3a169499b38822f9cd.tar.gz",
35+
"url": "https://github.com/input-output-hk/cardano-wallet/archive/7ed8f067dd6d5dc78e7353bf65ea5e3423cdfca8.tar.gz",
3636
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"
3737
},
3838
"flake-compat": {

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.1'; // TODO: pick up this value from process.env
49+
const NODE_VERSION = '1.35.2'; // 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)