forked from TrueCloudLab/frostfs-contract
[#232] *: Remove old update code
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
33d5568511
commit
5fc7474447
2 changed files with 0 additions and 28 deletions
|
@ -51,15 +51,6 @@ func _deploy(data interface{}, isUpdate bool) {
|
|||
if isUpdate {
|
||||
args := data.([]interface{})
|
||||
common.CheckVersion(args[len(args)-1].(int))
|
||||
|
||||
data := storage.Get(ctx, alphabetKey)
|
||||
alphabetNodes := std.Deserialize(data.([]byte)).([]common.IRNode)
|
||||
|
||||
pubs := []interop.PublicKey{}
|
||||
for i := range alphabetNodes {
|
||||
pubs = append(pubs, alphabetNodes[i].PublicKey)
|
||||
}
|
||||
common.SetSerialized(ctx, alphabetKey, pubs)
|
||||
return
|
||||
}
|
||||
|
||||
|
|
|
@ -88,25 +88,6 @@ func _deploy(data interface{}, isUpdate bool) {
|
|||
|
||||
if isUpdate {
|
||||
common.CheckVersion(args.version)
|
||||
|
||||
data := storage.Get(ctx, "snapshotPrevious")
|
||||
storage.Put(ctx, snapshotKeyPrefix+"0", data)
|
||||
|
||||
data = storage.Get(ctx, "snapshotCurrent")
|
||||
storage.Put(ctx, snapshotKeyPrefix+"1", data)
|
||||
|
||||
storage.Put(ctx, snapshotCurrentIDKey, 1)
|
||||
|
||||
if args.notaryDisabled {
|
||||
data = storage.Get(ctx, innerRingKey)
|
||||
irNodes := std.Deserialize(data.([]byte)).([]common.IRNode)
|
||||
|
||||
pubs := []interop.PublicKey{}
|
||||
for i := range irNodes {
|
||||
pubs = append(pubs, irNodes[i].PublicKey)
|
||||
}
|
||||
common.SetSerialized(ctx, innerRingKey, pubs)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue