File tree Expand file tree Collapse file tree 7 files changed +21
-19
lines changed
sample-node-config/aws/docker Expand file tree Collapse file tree 7 files changed +21
-19
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ changes.
11
11
12
12
## [ 0.15.0] - UNRELEASED
13
13
14
+ - Tested against ` cardano-node 8.7.3 ` and ` cardano-cli 8.17.0.0 ` .
15
+
14
16
- Hydra Direct Chain layer does not maintain state and does not make any logic
15
17
decisions. This is now completely responsibility of the HydraLogic layer.
16
18
Posting transactions from this layer is now free of any knowledge of L1 keys.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ version: "3.9"
2
2
3
3
services :
4
4
cardano-node :
5
- image : ghcr.io/input-output-hk/cardano-node:8.7.2
5
+ image : ghcr.io/input-output-hk/cardano-node:8.7.3
6
6
volumes :
7
7
- ./devnet:/devnet
8
8
environment :
Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ mkdir -p bin
44
44
version=0.14.0
45
45
curl -L -O https://github.com/input-output-hk/hydra/releases/download/${version} /hydra-x86_64-linux-${version} .zip
46
46
unzip -d bin hydra-x86_64-linux-${version} .zip
47
- curl -L -o - https://github.com/input-output-hk/hydra /releases/download/${version} /cardano-node-x86_64-linux- 8.7.2.zip
48
- unzip -d bin cardano-node-8.7.2-linux.zip
47
+ curl -L -o - https://github.com/input-output-hk/cardano-node /releases/download/8.7.3 /cardano-node-8.7.3-linux.tar.gz \
48
+ | tar xz -C bin ./ cardano-node ./cardano-cli
49
49
curl -L -o - https://github.com/input-output-hk/mithril/releases/download/2347.0/mithril-2347.0-linux-x64.tar.gz \
50
50
| tar xz -C bin mithril-client
51
51
chmod +x bin/*
@@ -59,10 +59,10 @@ mkdir -p bin
59
59
version=0.14.0
60
60
curl -L -O https://github.com/input-output-hk/hydra/releases/download/${version} /hydra-aarch64-darwin-${version} .zip
61
61
unzip -d bin hydra-aarch64-darwin-${version} .zip
62
- curl -L -o - https://github.com/input-output-hk/hydra/releases/download/${version} /cardano-node-aarch-darwin-8.7.2 .zip
63
- unzip -d bin cardano-node-8.7.2 -linux.zip
64
- curl -L -o - https://github.com/input-output-hk/mithril /releases/download/2347.0/mithril-2347.0 -macos-x64 .tar.gz \
65
- | tar xz -C bin
62
+ curl -L -o - https://github.com/input-output-hk/hydra/releases/download/${version} /cardano-node-aarch-darwin-8.7.3 .zip
63
+ unzip -d bin cardano-node-8.7.3 -linux.zip
64
+ curl -L -o - https://github.com/input-output-hk/cardano-node /releases/download/8.7.3/cardano-node-8.7.3 -macos.tar.gz \
65
+ | tar xz -C bin --wildcards ./cardano-node ./cardano-cli ' *.dylib '
66
66
chmod +x bin/*
67
67
```
68
68
Original file line number Diff line number Diff line change 8
8
url = "github:input-output-hk/cardano-haskell-packages?ref=repo" ;
9
9
flake = false ;
10
10
} ;
11
- cardano-node . url = "github:input-output-hk /cardano-node/8.7.2 " ;
11
+ cardano-node . url = "github:intersectmbo /cardano-node/8.7.3 " ;
12
12
mithril . url = "github:input-output-hk/mithril/2347.0" ;
13
13
} ;
14
14
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ spec = do
22
22
-- false positives test errors in case someone uses an "untested" /
23
23
-- different than in shell.nix version of cardano-node and cardano-cli.
24
24
it " has expected cardano-node version available" $
25
- getCardanoNodeVersion >>= (`shouldContain` " 8.7.2 " )
25
+ getCardanoNodeVersion >>= (`shouldContain` " 8.7.3 " )
26
26
27
27
it " withCardanoNodeDevnet does start a block-producing devnet within 5 seconds" $
28
28
failAfter 5 $
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ version: "3.9"
4
4
5
5
services :
6
6
cardano-node :
7
- image : inputoutput/cardano-node:8.7.2
7
+ image : inputoutput/cardano-node:8.7.3
8
8
restart : always
9
9
logging :
10
10
driver : " awslogs"
You can’t perform that action at this time.
0 commit comments