Skip to content

Commit

Permalink
wc: remove some logs πŸ˜… (#5534)
Browse files Browse the repository at this point in the history
  • Loading branch information
skylarbarrera authored Mar 19, 2024
1 parent 0c00f6a commit 01938d8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/screens/SignTransactionSheet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,6 @@ export const SignTransactionSheet = () => {
(async () => {
if (!isMessageRequest && !nonceForDisplay) {
try {
console.log({ currentAddress, currentNetwork });
const nonce = await getNextNonce({ address: currentAddress, network: currentNetwork });
if (nonce || nonce === 0) {
const nonceAsString = nonce.toString();
Expand Down
1 change: 0 additions & 1 deletion src/utils/requestNavigationHandlers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ export const handleWalletConnectRequest = async (request: WalletconnectRequestDa

const onCloseScreen = (canceled: boolean) => {
let type: WalletconnectResultType = request.payload?.method === SEND_TRANSACTION ? 'transaction' : 'sign';
console.log('type');
if (canceled) {
type = `${type}-canceled`;
}
Expand Down

0 comments on commit 01938d8

Please sign in to comment.