examples: update owner address

This commit is contained in:
Anna Shaleva 2021-03-22 18:12:56 +03:00
parent 28da00f057
commit 2f07d1aa9e
4 changed files with 4 additions and 4 deletions

View file

@ -7,7 +7,7 @@ import (
var ( var (
// Check if the invoker of the contract is the specified owner // Check if the invoker of the contract is the specified owner
owner = util.FromAddress("NULwe3UAHckN2fzNdcVg31tDiaYtMDwANt") owner = util.FromAddress("NX1yL5wDx3inK2qUVLRVaqCLUxYnAbv85S")
trigger byte trigger byte
) )

View file

@ -16,7 +16,7 @@ var (
// ctx holds storage context for contract methods // ctx holds storage context for contract methods
ctx storage.Context ctx storage.Context
// Check if the invoker of the contract is the specified owner // Check if the invoker of the contract is the specified owner
owner = util.FromAddress("NULwe3UAHckN2fzNdcVg31tDiaYtMDwANt") owner = util.FromAddress("NX1yL5wDx3inK2qUVLRVaqCLUxYnAbv85S")
// ticksKey is a storage key for ticks counter // ticksKey is a storage key for ticks counter
ticksKey = []byte("ticks") ticksKey = []byte("ticks")
) )

View file

@ -13,7 +13,7 @@ const (
) )
var ( var (
owner = util.FromAddress("NULwe3UAHckN2fzNdcVg31tDiaYtMDwANt") owner = util.FromAddress("NX1yL5wDx3inK2qUVLRVaqCLUxYnAbv85S")
trigger byte trigger byte
token TokenConfig token TokenConfig
ctx storage.Context ctx storage.Context

View file

@ -13,7 +13,7 @@ const (
) )
var ( var (
owner = util.FromAddress("NULwe3UAHckN2fzNdcVg31tDiaYtMDwANt") owner = util.FromAddress("NX1yL5wDx3inK2qUVLRVaqCLUxYnAbv85S")
token nep17.Token token nep17.Token
ctx storage.Context ctx storage.Context
) )