Skip to content

Commit

Permalink
cmd/geth: error message should not be capitalised (ethereum#27549)
Browse files Browse the repository at this point in the history
error message should not be capitalized / consistency
  • Loading branch information
puhtaytow authored and MoonShiesty committed Aug 30, 2023
1 parent 27eec31 commit 31c387b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/geth/verkle.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func checkChildren(root verkle.VerkleNode, resolver verkle.NodeResolverFn) error
return nil
}
}
return errors.New("Both balance and nonce are 0")
return errors.New("both balance and nonce are 0")
case verkle.Empty:
// nothing to do
default:
Expand Down

0 comments on commit 31c387b

Please sign in to comment.