Skip to content

Commit fe6cb0f

Browse files
committed
fix Function call
1 parent aae5498 commit fe6cb0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gnovm/stdlibs/std/crypto.gno

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ func (a Address) String() string {
1010

1111
// IsValid checks if the address is valid bech32 encoded string
1212
func (a Address) IsValid() bool {
13-
_, _, ok := bech32.DecodeBech32(a)
13+
_, _, ok := DecodeBech32(a)
1414
return ok
1515
}
1616

0 commit comments

Comments
 (0)