docs: correct comment typo in address.go (backport #16671) (#16674)

Co-authored-by: ww4tson <133960002+ww4tson@users.noreply.github.com>
This commit is contained in:
mergify[bot] 2023-06-24 00:08:34 +02:00 committed by GitHub
parent 275744f332
commit 23f3e123dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -372,7 +372,7 @@ func (va ValAddress) Equals(va2 Address) bool {
return bytes.Equal(va.Bytes(), va2.Bytes())
}
// Returns boolean for whether an AccAddress is empty
// Returns boolean for whether an ValAddress is empty
func (va ValAddress) Empty() bool {
return len(va) == 0
}