(t *testing.T)
| 117 | } |
| 118 | |
| 119 | func TestGasTable(t *testing.T) { |
| 120 | SetRunMode(Dev) |
| 121 | cc := ChainConfig{Dpor: nil, ChainID: nil} |
| 122 | assert.Equal(t, GasTableCep1, cc.GasTable(big.NewInt(0))) |
| 123 | } |
| 124 | |
| 125 | func TestConfigCompatError(t *testing.T) { |
| 126 | err := ConfigCompatError{What: "xxx", StoredConfig: nil, NewConfig: nil, RewindTo: 1} |
nothing calls this directly
no test coverage detected