mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 11:41:19 +00:00
Fix expected value in test (#8412)
This commit is contained in:
parent
2a5c51dc57
commit
4d97428c81
@ -107,7 +107,7 @@ func TestSendRawTransaction(t *testing.T) {
|
|||||||
t.Log("Timeout waiting for txn from channel")
|
t.Log("Timeout waiting for txn from channel")
|
||||||
jsonTx, err := api.GetTransactionByHash(ctx, txHash)
|
jsonTx, err := api.GetTransactionByHash(ctx, txHash)
|
||||||
require.NoError(err)
|
require.NoError(err)
|
||||||
require.Equal(expectedValue+1, jsonTx.Value.Uint64())
|
require.Equal(expectedValue, jsonTx.Value.Uint64())
|
||||||
}
|
}
|
||||||
|
|
||||||
//send same tx second time and expect error
|
//send same tx second time and expect error
|
||||||
|
Loading…
Reference in New Issue
Block a user