Skip to content

Commit

Permalink
Remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
rileystephens28 committed Apr 6, 2024
1 parent 05198c7 commit 1dcc2ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src.ts/providers/abstract-signer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export abstract class AbstractSigner<P extends null | Provider = null | Provider
const txObj = Transaction.from(pop);

const signedTx = await this.signTransaction(txObj);
console.log("signedTX: ", JSON.stringify(txObj))
// console.log("signedTX: ", JSON.stringify(txObj))
return await provider.broadcastTransaction(shard, signedTx);
}

Expand Down
2 changes: 1 addition & 1 deletion src.ts/utils/proto-decode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ function _decode(object: any): any {
}

export function decodeProto(object: Uint8Array): string{
console.log('Test decode')
// console.log('Test decode')
return _decode(object);
}

0 comments on commit 1dcc2ee

Please sign in to comment.