Skip to content

Commit

Permalink
Merge pull request #94 from Zondax/fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosala authored Jun 20, 2023
2 parents 947c31b + 6b35a08 commit 69ab4c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/substrate_app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 69ab4c9

Please sign in to comment.