Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into dev/moul/r/sys/params
Browse files Browse the repository at this point in the history
  • Loading branch information
moul committed Oct 23, 2024
2 parents e7840ff + 43dd3f3 commit aaa88b6
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 aaa88b6

Please sign in to comment.