Skip to content

Commit c59509b

Browse files
committed
fix: fixing type errors
1 parent 421a136 commit c59509b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/wallet/transact.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ export async function signTransaction(
184184
log('', 'info')
185185

186186
// Select the key to use
187-
const keyName = selectKey(options.key)
187+
const keyName = selectKey(options.key, transaction)
188188
log(`Using key: ${keyName}`, 'info')
189189

190190
// Get password if needed
@@ -249,7 +249,7 @@ export async function transactTransaction(
249249
log('', 'info')
250250

251251
// Select the key to use
252-
const keyName = selectKey(options.key)
252+
const keyName = selectKey(options.key, transaction)
253253
log(`Using key: ${keyName}`, 'info')
254254

255255
// Get password if needed

0 commit comments

Comments
 (0)