Update runtime_test.go

This commit is contained in:
jagdeep sidhu 2024-10-08 15:46:08 -07:00
parent 583a206fa4
commit 1ed0639ae9

View file

@ -61,6 +61,16 @@ func TestDefaults(t *testing.T) {
if cfg.GetHashFn == nil {
t.Error("expected time to be non nil")
}
// SYSCOIN
if cfg.ReadSYSHashFn == nil {
t.Error("expected time to be non nil")
}
if cfg.ReadDataHashFn == nil {
t.Error("expected time to be non nil")
}
if cfg.GetNEVMAddressFn == nil {
t.Error("expected time to be non nil")
}
if cfg.BlockNumber == nil {
t.Error("expected block number to be non nil")
}