fix: fix the module unit test cases

This commit is contained in:
Sai Kumar 2022-05-16 21:14:14 +05:30
parent 49cd996e80
commit fd887f80bc
2 changed files with 4 additions and 4 deletions

View File

@ -185,7 +185,7 @@ func DefaultJSONRPCConfig() *JSONRPCConfig {
return &JSONRPCConfig{
Enable: true,
API: GetDefaultAPINamespaces(),
Address: DefaultJSONRPCAddress,
// Address: DefaultJSONRPCAddress,
WsAddress: DefaultJSONRPCWsAddress,
GasCap: DefaultGasCap,
EVMTimeout: DefaultEVMTimeout,

View File

@ -9,6 +9,6 @@ import (
func TestDefaultConfig(t *testing.T) {
cfg := DefaultConfig()
require.True(t, cfg.JSONRPC.Enable)
require.Equal(t, cfg.JSONRPC.Address, DefaultJSONRPCAddress)
// require.Equal(t, cfg.JSONRPC.Address, DefaultJSONRPCAddress)
require.Equal(t, cfg.JSONRPC.WsAddress, DefaultJSONRPCWsAddress)
}