forked from TrueCloudLab/neoneo-go
Merge pull request #2599 from nspcc-dev/nns-cleanup
nft-nd-nns: clean up old entries on re-registration, fix #2570
This commit is contained in:
commit
54849ef3e5
2 changed files with 7 additions and 0 deletions
|
@ -265,6 +265,10 @@ func Register(name string, owner interop.Hash160) bool {
|
|||
}
|
||||
oldOwner = ns.Owner
|
||||
updateBalance(ctx, []byte(name), oldOwner, -1)
|
||||
it := storage.Find(ctx, append([]byte{prefixRecord}, tokenKey...), storage.KeysOnly)
|
||||
for iterator.Next(it) {
|
||||
storage.Delete(ctx, iterator.Value(it))
|
||||
}
|
||||
} else {
|
||||
updateTotalSupply(ctx, +1)
|
||||
}
|
||||
|
|
|
@ -132,6 +132,9 @@ func TestExpiration(t *testing.T) {
|
|||
b5.Timestamp = b4.Timestamp + 1000
|
||||
require.NoError(t, bc.AddBlock(e.SignBlock(b5)))
|
||||
e.CheckFault(t, tx.Hash(), "name has expired")
|
||||
|
||||
cAcc.Invoke(t, true, "register", "first.com", acc.ScriptHash()) // Re-register.
|
||||
cAcc.Invoke(t, stackitem.Null{}, "resolve", "first.com", int64(nns.TXT))
|
||||
}
|
||||
|
||||
const millisecondsInYear = 365 * 24 * 3600 * 1000
|
||||
|
|
Loading…
Reference in a new issue