Skip to content

Commit

Permalink
Merge branch 'main' into feat/throws-error-flag
Browse files Browse the repository at this point in the history
  • Loading branch information
drichar authored Mar 13, 2024
2 parents b3ad60c + 802d297 commit 22f400b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clients/lute/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ class LuteClient extends BaseClient {
}, [])

// Sign them with the client.
const result = (await this.#client.signTxns(txnsToSign)) as (Uint8Array | null)[]
const result: (Uint8Array | null)[] = await this.#client.signTxns(txnsToSign)

const signedTxns = transactions.reduce<Uint8Array[]>((acc, txn, i) => {
if (signedIndexes.includes(i)) {
Expand Down

0 comments on commit 22f400b

Please sign in to comment.