diff --git a/src/App.tsx b/src/App.tsx index b5b28e9..fe86718 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -20,8 +20,6 @@ const testnet = new DAppKit({ const errorSelector = keccak256("Error(string)").toString("hex").slice(0, 8); const panicSelector = keccak256("Panic(uint256)").toString("hex").slice(0, 8); -console.log(errorSelector); -console.log(panicSelector); export function decodeRevertReason(data: string): string { try { @@ -64,8 +62,6 @@ function App() { ) => { const tx = await dappKit.thor.transaction(txHash).get(); - console.log(tx); - if (!tx) return; const block = await dappKit.thor.block(tx.meta.blockID).get();