Skip to content

Commit c42ad70

Browse files
authored
Merge pull request #1171 from kaleido-io/v1.2.0-rc.2
Update dependencies for v1.2.0
2 parents 3815826 + 2322d5c commit c42ad70

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
},
77
"evmconnect": {
88
"image": "ghcr.io/hyperledger/firefly-evmconnect",
9-
"tag": "v1.2.0",
10-
"sha": "ffb61bcde6c3536c6c3a5a5f097e7ad02aec6365972c4674e271d1f1625828c5"
9+
"tag": "v1.2.1",
10+
"sha": "5f5ada5da90e7e49ba60f82737f7613d6759134248faa363210b74d89996d9b8"
1111
},
1212
"fabconnect": {
1313
"image": "ghcr.io/hyperledger/firefly-fabconnect",
@@ -54,6 +54,6 @@
5454
"release": "v1.2.0-alpha.1"
5555
},
5656
"cli": {
57-
"tag": "v1.2.0-alpha.1"
57+
"tag": "v1.2.0-rc.1"
5858
}
5959
}

test/e2e/multiparty/contract_migration.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,13 @@ func runMigrationTest(suite *ContractMigrationTestSuite, address1, address2 stri
5656
suite.T().Logf("Test namespace: %s", testNamespace)
5757

5858
org := map[string]interface{}{}
59+
node := map[string]interface{}{}
5960
namespaceInfo := map[string]interface{}{
6061
"name": testNamespace,
6162
"multiparty": map[string]interface{}{
6263
"enabled": true,
6364
"org": org,
65+
"node": node,
6466
"contract": []map[string]interface{}{
6567
{
6668
"location": map[string]interface{}{"address": address1},
@@ -81,12 +83,14 @@ func runMigrationTest(suite *ContractMigrationTestSuite, address1, address2 stri
8183
data1 := e2e.ReadConfig(suite.T(), suite.testState.configFile1)
8284
org["name"] = suite.testState.org1.Name
8385
org["key"] = suite.testState.org1key.Value
86+
node["name"] = fmt.Sprintf("%s_node", suite.testState.org1.Name)
8487
e2e.AddNamespace(data1, namespaceInfo)
8588
e2e.WriteConfig(suite.T(), suite.testState.configFile1, data1)
8689

8790
data2 := e2e.ReadConfig(suite.T(), suite.testState.configFile2)
8891
org["name"] = suite.testState.org2.Name
8992
org["key"] = suite.testState.org2key.Value
93+
node["name"] = fmt.Sprintf("%s_node", suite.testState.org2.Name)
9094
e2e.AddNamespace(data2, namespaceInfo)
9195
e2e.WriteConfig(suite.T(), suite.testState.configFile2, data2)
9296

0 commit comments

Comments
 (0)