Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/signer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ export class KMSSigner extends AbstractSigner<JsonRpcApiProvider> {

async signTransaction(tx: TransactionRequest): Promise<string> {
tx = copyRequest(tx);
console.log( { tx} )

// Replace any Addressable or ENS name with an address
const { to, from } = await resolveProperties({
Expand All @@ -109,7 +108,6 @@ export class KMSSigner extends AbstractSigner<JsonRpcApiProvider> {

// Build the transaction
const btx = Transaction.from(<TransactionLike<string>>tx);
console.log({ btx: btx.toJSON(), tx })
btx.signature = await createSignature({
kmsInstance: this.kmsInstance,
keyId: this.keyId,
Expand Down