Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
samsondav committed Sep 12, 2023
1 parent 83a2cae commit 389d0d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/chains/evm/config/toml/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ func (cs EVMConfigs) Nodes(chainID relay.ChainID) (ns []types.Node, err error) {
}
nodes := cs.nodes(chainID)
if nodes == nil {
err = fmt.Errorf("no nodes: chain %s: %w", &chainID, chains.ErrNotFound)
err = fmt.Errorf("no nodes: chain %q: %w", chainID, chains.ErrNotFound)
return
}
for _, n := range nodes {
Expand Down

0 comments on commit 389d0d6

Please sign in to comment.