Skip to content

Commit

Permalink
Remove console log and confirmation arg
Browse files Browse the repository at this point in the history
  • Loading branch information
ccali11 committed Aug 9, 2023
1 parent 04d5653 commit d93728d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions apps/web/src/composables/contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -384,8 +384,7 @@ export default function useContracts() {
let signer = signerCreator(walletProvider)
if (isWalletConnectSigner(signer)) signer = await signer
const result = await casimirOperatorRegistry.connect(signer as ethers.Signer).register(operatorId, { from: address, value: ethers.utils.parseEther(value)})
console.log('register result :>> ', result)
await result.wait(1)
await result.wait()
return true
} catch (err) {
console.error(`There was an error in registerOperatorWithCasimir function: ${JSON.stringify(err)}`)
Expand Down

0 comments on commit d93728d

Please sign in to comment.