Skip to content

Commit

Permalink
fix Function call
Browse files Browse the repository at this point in the history
  • Loading branch information
Villaquiranm committed Dec 19, 2024
1 parent aae5498 commit fe6cb0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnovm/stdlibs/std/crypto.gno
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ func (a Address) String() string {

// IsValid checks if the address is valid bech32 encoded string
func (a Address) IsValid() bool {
_, _, ok := bech32.DecodeBech32(a)
_, _, ok := DecodeBech32(a)
return ok
}

Expand Down

0 comments on commit fe6cb0f

Please sign in to comment.