We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1487a85 commit dc4f98bCopy full SHA for dc4f98b
core/vm/runtime/runtime_test.go
@@ -54,13 +54,13 @@ func TestDefaults(t *testing.T) {
54
t.Error("didn't expect gaslimit to be zero")
55
}
56
if cfg.GasPrice == nil {
57
- t.Error("expected time to be non nil")
+ t.Error("expected gas price to be non nil")
58
59
if cfg.Value == nil {
60
+ t.Error("expected value to be non nil")
61
62
if cfg.GetHashFn == nil {
63
+ t.Error("expected get hash function to be non nil")
64
65
if cfg.BlockNumber == nil {
66
t.Error("expected block number to be non nil")
0 commit comments