Skip to content

Commit

Permalink
make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
EasterTheBunny committed Dec 12, 2024
1 parent 352a971 commit 32f41a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/chains/evm/config/toml/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ func readConfig(path string, reader func(name string) ([]byte, error), fallback

// decode from toml to a chain config
if err := cconfig.DecodeTOML(bytes.NewReader(bts), &config); err != nil {
return nil, Chain{}, fmt.Errorf("%w %q: %s", errDecode, path, err)
return nil, Chain{}, fmt.Errorf("%w %s: %s", errDecode, path, err.Error())
}

if fallback {
Expand Down

0 comments on commit 32f41a2

Please sign in to comment.