Skip to content

Commit

Permalink
fix(node-funder): improve erorr msg for not provided geth-url
Browse files Browse the repository at this point in the history
  • Loading branch information
gacevicljubisa committed Sep 29, 2023
1 parent b5d7e7e commit f85e038
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/beekeeper/cmd/node_funder.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func (c *command) initNodeFunderCmd() (err error) {

// chain node endpoint check
if cfg.ChainNodeEndpoint = c.globalConfig.GetString(optionNameChainNodeEndpoint); cfg.ChainNodeEndpoint == "" {
return errors.New("chain node endpoint not provided")
return errors.New("chain node endpoint (geth-url) not provided")
}

// wallet key check
Expand Down

0 comments on commit f85e038

Please sign in to comment.