Skip to content

Commit 3815826

Browse files
authored
Merge pull request #1168 from kaleido-io/v1.2.0-rc.1
Update dependencies for v1.2.0
2 parents a41e815 + 2b6792c commit 3815826

File tree

3 files changed

+14
-15
lines changed

3 files changed

+14
-15
lines changed

manifest.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
},
77
"evmconnect": {
88
"image": "ghcr.io/hyperledger/firefly-evmconnect",
9-
"tag": "v1.1.10-20221220-30",
10-
"sha": "3366c4061573145b3e941768b11c3a27f18c7aa0e8540a13ffa56526193a4248"
9+
"tag": "v1.2.0",
10+
"sha": "ffb61bcde6c3536c6c3a5a5f097e7ad02aec6365972c4674e271d1f1625828c5"
1111
},
1212
"fabconnect": {
1313
"image": "ghcr.io/hyperledger/firefly-fabconnect",
14-
"tag": "null-20230119-30",
15-
"sha": "d46b3408ff1a1c4730633c217fa41f78097f76caf5ca884ede8932cbafa83476"
14+
"tag": "v0.9.17",
15+
"sha": "7d4aa158f9dff31f200ae7a04f68665f32930f7739156b25a0da80e5353f3245"
1616
},
1717
"dataexchange-https": {
1818
"image": "ghcr.io/hyperledger/firefly-dataexchange-https",
@@ -21,18 +21,18 @@
2121
},
2222
"tokens-erc1155": {
2323
"image": "ghcr.io/hyperledger/firefly-tokens-erc1155",
24-
"tag": "v1.2.0-20230119-56",
25-
"sha": "e025a9e07e0066a8b9dd568a28ae629c6fee3e498337a823699c4d459442d4ad"
24+
"tag": "v1.2.1",
25+
"sha": "c9c4cf768e336ab73f5b8ab5c2872bf4cd1216b5c0de9a1bee811c8aeaf91a43"
2626
},
2727
"tokens-erc20-erc721": {
2828
"image": "ghcr.io/hyperledger/firefly-tokens-erc20-erc721",
29-
"tag": "v1.2.0-20230119-76",
30-
"sha": "f65438c9da16f39389dbf0c36eda103670cc8559a58d72fd6b0fe6299623628e"
29+
"tag": "v1.2.1",
30+
"sha": "401d4fbe3fcf26e63bdfc889d6eac46fde346d90ed091da558ac5fcb97d243c8"
3131
},
3232
"signer": {
3333
"image": "ghcr.io/hyperledger/firefly-signer",
34-
"tag": "v1.1.4-20230105-28",
35-
"sha": "a4a26b9ce921e908e827d63219fca02e1d56da3a64e14dc396279a4818ae1083"
34+
"tag": "v1.1.5",
35+
"sha": "4ee8549d12339f6d4224a277faf143da1749a51a5994e074224c95e3cce64670"
3636
},
3737
"build": {
3838
"firefly-builder": {
@@ -56,4 +56,4 @@
5656
"cli": {
5757
"tag": "v1.2.0-alpha.1"
5858
}
59-
}
59+
}

test/e2e/multiparty/tokens.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,7 @@ func (suite *TokensTestSuite) TestE2ENonFungibleTokensSync() {
266266

267267
transfer := &core.TokenTransferInput{
268268
TokenTransfer: core.TokenTransfer{
269-
TokenIndex: "1",
270-
Amount: *fftypes.NewFFBigInt(1),
269+
Amount: *fftypes.NewFFBigInt(1),
271270
},
272271
Pool: poolName,
273272
}

test/e2e/run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ create_accounts() {
1919
# Create 4 new accounts for the first org for use in testing
2020
for i in {1..4}
2121
do
22-
$CLI accounts create $STACK_NAME org_0 user_$(openssl rand -hex 10)
22+
$CLI accounts create $STACK_NAME $($CLI accounts list $STACK_NAME | jq --raw-output '.[0].orgName') user_$(openssl rand -hex 3)
2323
done
2424
# Create one account for the second org
25-
$CLI accounts create $STACK_NAME org_1 user_$(openssl rand -hex 10)
25+
$CLI accounts create $STACK_NAME $($CLI accounts list $STACK_NAME | jq --raw-output '.[1].orgName') user_$(openssl rand -hex 3)
2626
fi
2727
}
2828

0 commit comments

Comments
 (0)