diff --git a/nns/nns_contract.go b/nns/nns_contract.go index 2f642834..09a50a88 100644 --- a/nns/nns_contract.go +++ b/nns/nns_contract.go @@ -65,9 +65,10 @@ const ( // Other constants. const ( // defaultRegisterPrice is the default price for new domain registration. - defaultRegisterPrice = 10_0000_0000 + defaultRegisterPrice = 10_0000_0000 + millisecondsInSeconds = 1000 // millisecondsInYear is amount of milliseconds per year. - millisecondsInYear = int64(365 * 24 * 3600 * 1000) + millisecondsInYear = int64(365 * 24 * 3600 * millisecondsInSeconds) ) // RecordState is a type that registered entities are saved to. @@ -339,7 +340,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*millisecondsInSeconds), } putNameStateWithKey(ctx, tokenKey, ns) putSoaRecord(ctx, name, email, refresh, retry, expire, ttl)