Skip to content

Commit

Permalink
Update e2e/evm/test/contract_send_nibi.test.js
Browse files Browse the repository at this point in the history
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
  • Loading branch information
Unique-Divine and coderabbitai[bot] authored May 31, 2024
1 parent 2bcd9d8 commit c7e25eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/evm/test/contract_send_nibi.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const doContractSend = async (sendMethod) => {
const recipientBalanceBefore = await provider.getBalance(recipientAddress) // NIBI
expect(recipientBalanceBefore).toEqual(0n)

let tx = await contract[sendMethod](recipientAddress, {value: transferValue})
const tx = await contract[sendMethod](recipientAddress, {value: transferValue})
await tx.wait()

const ownerBalanceAfter = await provider.getBalance(account.address) // NIBI
Expand Down

0 comments on commit c7e25eb

Please sign in to comment.