From 37d5f5632efdae2111df795460943758683a50ff Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Wed, 14 Sep 2022 17:41:19 +0300 Subject: [PATCH] [#266] nns: Use millisecondsInSeconds constant where appropriate Signed-off-by: Anna Shaleva --- nns/nns_contract.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nns/nns_contract.go b/nns/nns_contract.go index 2f642834..fae15a18 100644 --- a/nns/nns_contract.go +++ b/nns/nns_contract.go @@ -66,8 +66,10 @@ const ( const ( // defaultRegisterPrice is the default price for new domain registration. defaultRegisterPrice = 10_0000_0000 + // millisecondsInSecond is the amount of milliseconds per second. + millisecondsInSecond = 1000 // millisecondsInYear is amount of milliseconds per year. - millisecondsInYear = int64(365 * 24 * 3600 * 1000) + millisecondsInYear = int64(365 * 24 * 3600 * millisecondsInSecond) ) // RecordState is a type that registered entities are saved to. @@ -339,7 +341,7 @@ func Register(name string, owner interop.Hash160, email string, refresh, retry, Owner: owner, Name: name, // NNS expiration is in milliseconds - Expiration: int64(runtime.GetTime() + expire*1000), + Expiration: int64(runtime.GetTime() + expire*millisecondsInSecond), } putNameStateWithKey(ctx, tokenKey, ns) putSoaRecord(ctx, name, email, refresh, retry, expire, ttl)