diff --git a/components/forms/TransactionSigning.tsx b/components/forms/TransactionSigning.tsx index 9a361d4..78bc9bc 100644 --- a/components/forms/TransactionSigning.tsx +++ b/components/forms/TransactionSigning.tsx @@ -155,8 +155,6 @@ const TransactionSigning = (props: Props) => { chainId: state.chain.chainId, }; - console.log({ msgs: props.tx.msgs }); - const { bodyBytes, signatures } = await signingClient.sign( signerAddress, props.tx.msgs, @@ -165,8 +163,6 @@ const TransactionSigning = (props: Props) => { signerData, ); - console.log({ bodyBytes: toHex(bodyBytes) }); - // check existing signatures const bases64EncodedSignature = toBase64(signatures[0]); const bases64EncodedBodyBytes = toBase64(bodyBytes);