Skip to content

Commit

Permalink
Remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljscript committed Oct 9, 2023
1 parent 9d6c428 commit ac62630
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -880,12 +880,9 @@ export const makeShelleyWallet = (constants: typeof MAINNET | typeof TESTNET) =>
(address: string) => this.getAddressing(address),
stakeVkeyHash,
)
console.log('payload', payload)

const signedLedgerTx = await signTxWithLedger(payload, this.hwDeviceInfo, useUSB)

console.log('received signature', signedLedgerTx)

const bytes = await createSignedLedgerSwapCancellationTx(
cbor,
signedLedgerTx.witnesses,
Expand All @@ -894,7 +891,6 @@ export const makeShelleyWallet = (constants: typeof MAINNET | typeof TESTNET) =>
)

const base64 = Buffer.from(bytes).toString('base64')
console.log('got base64', base64)
await this.submitTransaction(base64)
}

Expand Down

0 comments on commit ac62630

Please sign in to comment.