Skip to content

Commit

Permalink
chore: fixup
Browse files Browse the repository at this point in the history
Signed-off-by: moul <94029+moul@users.noreply.github.com>
  • Loading branch information
moul committed Oct 23, 2024
1 parent dc37fe0 commit 060a3be
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions gnovm/stdlibs/std/params.gno
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@ func setParamInt64(key string, val int64)
func setParamUint64(key string, val uint64)
func setParamBytes(key string, val []byte)

var (
SetParamString = setParamString
SetParamBool = setParamBool
SetParamInt64 = setParamInt64
SetParamUint64 = setParamUint64
SetParamBytes = setParamBytes
)
func SetParamString(key string, val string) { setParamString(key, val) }
func SetParamBool(key string, val bool) { setParamBool(key, val) }
func SetParamInt64(key string, val int64) { setParamInt64(key, val) }
func SetParamUint64(key string, val uint64) { setParamUint64(key, val) }
func SetParamBytes(key string, val []byte) { setParamBytes(key, val) }

0 comments on commit 060a3be

Please sign in to comment.