Skip to content

Commit

Permalink
added message to failed assert (#2805)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmer authored Jun 12, 2024
1 parent f501436 commit 15d578a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/waku_rln_relay/test_rln_group_manager_onchain.nim
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ else:
{.push raises: [].}

import
std/[options, os, osproc, sequtils, deques, streams, strutils, tempfiles],
std/[options, os, osproc, sequtils, deques, streams, strutils, tempfiles, strformat],
stew/[results, byteutils],
testutils/unittests,
chronos,
Expand Down Expand Up @@ -119,10 +119,11 @@ proc createEthAccount(): Future[(keys.PrivateKey, Address)] {.async.} =
tx.to = some(acc)
tx.gasPrice = some(gasPrice)

# Send 10 eth to acc
# Send 1000 eth to acc
discard await web3.send(tx)
let balance = await web3.provider.eth_getBalance(acc, "latest")
assert(balance == ethToWei(1000.u256))
assert balance == ethToWei(1000.u256),
fmt"Balance is {balance} but expected {ethToWei(1000.u256)}"

return (pk, acc)

Expand Down

0 comments on commit 15d578a

Please sign in to comment.