From de900c5de9ea18ef79820c5f5139ce4d0b0fb983 Mon Sep 17 00:00:00 2001 From: Andrew Richardson Date: Mon, 20 Jun 2022 09:24:21 -0400 Subject: [PATCH 1/2] Update token connector versions Signed-off-by: Andrew Richardson --- manifest.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manifest.json b/manifest.json index ff98759a36..ea336d9f5b 100644 --- a/manifest.json +++ b/manifest.json @@ -16,13 +16,13 @@ }, "tokens-erc1155": { "image": "ghcr.io/hyperledger/firefly-tokens-erc1155", - "tag": "v1.0.1-20220502-30", - "sha": "fe809ebc85a70ad04db0e502401df12e9989d60fae08427255b916caad98fea1" + "tag": "v1.0.2-20220617-31", + "sha": "c2b9db025f80cd45fb1a7694d67556936ae050d3fc269bf2f6190f380e9de44c" }, "tokens-erc20-erc721": { "image": "ghcr.io/hyperledger/firefly-tokens-erc20-erc721", - "tag": "v1.0.1", - "sha": "059725fe309d25521cd5a3929947e839275a2f0d0c16efa0fda9a7f6791a6fb6" + "tag": "v1.0.1-20220617-47", + "sha": "533eb4e3197b1a65ff85cb47e685c56a8454f2b2aa1f69bc91ce47475df0f5d7" }, "build": { "firefly-builder": { From 2c4d7cbbf451e33a05d84484bdc42261b6b9ffdd Mon Sep 17 00:00:00 2001 From: Andrew Richardson Date: Mon, 20 Jun 2022 09:35:03 -0400 Subject: [PATCH 2/2] Fix orchestrator unit test Signed-off-by: Andrew Richardson --- internal/orchestrator/orchestrator_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/orchestrator/orchestrator_test.go b/internal/orchestrator/orchestrator_test.go index 7b560caadf..9f1c75193c 100644 --- a/internal/orchestrator/orchestrator_test.go +++ b/internal/orchestrator/orchestrator_test.go @@ -211,7 +211,7 @@ func TestInitTokenListenerFail(t *testing.T) { defer or.cleanup(t) or.mdi.On("RegisterListener", mock.Anything).Return() or.mbi.On("RegisterListener", mock.Anything).Return() - or.mdi.On("GetIdentities", mock.Anything, mock.Anything).Return([]*core.Identity{{}}, nil, nil) + or.mdi.On("GetIdentities", mock.Anything, "ns", mock.Anything).Return([]*core.Identity{{}}, nil, nil) or.mdx.On("RegisterListener", mock.Anything).Return() or.mdx.On("SetNodes", mock.Anything).Return() or.mps.On("RegisterListener", mock.Anything).Return()