From 6b35a085e9a6f11a31eb42729c873d589a52eaf6 Mon Sep 17 00:00:00 2001 From: Carlo Sala Date: Tue, 20 Jun 2023 18:09:58 +0200 Subject: [PATCH] missing ins --- src/substrate_app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/substrate_app.ts b/src/substrate_app.ts index ac3be25..933edfb 100644 --- a/src/substrate_app.ts +++ b/src/substrate_app.ts @@ -221,7 +221,7 @@ export class SubstrateApp { return await this.signSendChunk(1, chunks.length, chunks[0], scheme, ins).then(async () => { let result; for (let i = 1; i < chunks.length; i += 1) { - result = await this.signSendChunk(1 + i, chunks.length, chunks[i], scheme); + result = await this.signSendChunk(1 + i, chunks.length, chunks[i], scheme, ins); if (result.return_code !== ERROR_CODE.NoError) { break; }