Skip to content

Commit

Permalink
Fix account deployment test
Browse files Browse the repository at this point in the history
  • Loading branch information
archseer committed Feb 9, 2024
1 parent e6f7597 commit 58d9847
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('OZ Account Contract', () => {

const { contract: oz } = accountContractLoader()
const ozContract = new Contract(oz.abi, contractAddress, makeProvider(LOCAL_URL).provider)
const { publicKey: onChainPubKey } = await ozContract.getPublicKey()
const onChainPubKey = await ozContract.getPublicKey()
expect(onChainPubKey).toEqual(BigInt(publicKey))
},
TIMEOUT,
Expand Down

0 comments on commit 58d9847

Please sign in to comment.