From 2f07d1aa9ea3e5e7e40e761d6249abfe1cfd3775 Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Mon, 22 Mar 2021 18:12:56 +0300 Subject: [PATCH] examples: update owner address --- examples/runtime/runtime.go | 2 +- examples/timer/timer.go | 2 +- examples/token-sale/token_sale.go | 2 +- examples/token/token.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/runtime/runtime.go b/examples/runtime/runtime.go index aa0d04255..102bbf628 100644 --- a/examples/runtime/runtime.go +++ b/examples/runtime/runtime.go @@ -7,7 +7,7 @@ import ( var ( // Check if the invoker of the contract is the specified owner - owner = util.FromAddress("NULwe3UAHckN2fzNdcVg31tDiaYtMDwANt") + owner = util.FromAddress("NX1yL5wDx3inK2qUVLRVaqCLUxYnAbv85S") trigger byte ) diff --git a/examples/timer/timer.go b/examples/timer/timer.go index 6cbc02d2f..acf27a910 100644 --- a/examples/timer/timer.go +++ b/examples/timer/timer.go @@ -16,7 +16,7 @@ var ( // ctx holds storage context for contract methods ctx storage.Context // 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 = []byte("ticks") ) diff --git a/examples/token-sale/token_sale.go b/examples/token-sale/token_sale.go index d75cf32ad..314f3c891 100644 --- a/examples/token-sale/token_sale.go +++ b/examples/token-sale/token_sale.go @@ -13,7 +13,7 @@ const ( ) var ( - owner = util.FromAddress("NULwe3UAHckN2fzNdcVg31tDiaYtMDwANt") + owner = util.FromAddress("NX1yL5wDx3inK2qUVLRVaqCLUxYnAbv85S") trigger byte token TokenConfig ctx storage.Context diff --git a/examples/token/token.go b/examples/token/token.go index f0a7eb09c..fcda064fa 100644 --- a/examples/token/token.go +++ b/examples/token/token.go @@ -13,7 +13,7 @@ const ( ) var ( - owner = util.FromAddress("NULwe3UAHckN2fzNdcVg31tDiaYtMDwANt") + owner = util.FromAddress("NX1yL5wDx3inK2qUVLRVaqCLUxYnAbv85S") token nep17.Token ctx storage.Context )