From c7e25eb5db2e9e19b649f6e8937cd4da6c1b5db5 Mon Sep 17 00:00:00 2001 From: Unique Divine <51418232+Unique-Divine@users.noreply.github.com> Date: Fri, 31 May 2024 00:49:31 -0500 Subject: [PATCH] Update e2e/evm/test/contract_send_nibi.test.js Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- e2e/evm/test/contract_send_nibi.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/evm/test/contract_send_nibi.test.js b/e2e/evm/test/contract_send_nibi.test.js index 9d4fcb8f0..59d70accb 100644 --- a/e2e/evm/test/contract_send_nibi.test.js +++ b/e2e/evm/test/contract_send_nibi.test.js @@ -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