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

This commit is contained in:
ww4tson 2023-06-23 15:09:25 -04:00 committed by GitHub
parent 1b4551ab50
commit c82f64922e
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
}