added message to failed assert (#2805)

This commit is contained in:
gabrielmer 2024-06-12 22:27:10 +02:00 committed by GitHub
parent f501436d21
commit 15d578ad87
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 3 deletions

View File

@ -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,
@ -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)