Skip to content

Commit 1b2fe62

Browse files
authored
Fix no solver config error (#42)
1 parent b21c36b commit 1b2fe62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chains/evm/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ func NewEVMConfig(chainConfig map[string]interface{}, solverConfig solverConfig.
7272
id := fmt.Sprintf("eip155:%d", *c.Id)
7373
sc, ok := solverConfig.Chains[id]
7474
if !ok {
75-
return nil, fmt.Errorf("no solver config for chain %d", c.Id)
75+
return nil, fmt.Errorf("no solver config for id %s", id)
7676
}
7777

7878
tokens := make(map[string]config.TokenConfig)

0 commit comments

Comments
 (0)