-
Notifications
You must be signed in to change notification settings - Fork 178
/
storage_fees_migration.go
67 lines (60 loc) · 1.7 KB
/
storage_fees_migration.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package migrations
import (
fvm "github.com/onflow/flow-go/fvm/environment"
"github.com/onflow/flow-go/ledger"
"github.com/onflow/flow-go/ledger/common/utils"
"github.com/onflow/flow-go/model/flow"
)
// iterates through registers keeping a map of register sizes
// after it has reached the end it add storage used and storage capacity for each address
func StorageFeesMigration(payload []ledger.Payload) ([]ledger.Payload, error) {
storageUsed := make(map[string]uint64)
newPayload := make([]ledger.Payload, len(payload))
for i, p := range payload {
err := incrementStorageUsed(p, storageUsed)
if err != nil {
return nil, err
}
newPayload[i] = p
}
for s, u := range storageUsed {
// this is the storage used by the storage_used register we are about to add
storageUsedByStorageUsed := fvm.RegisterSize(
flow.BytesToAddress([]byte(s)),
"storage_used",
make([]byte, 8))
u = u + uint64(storageUsedByStorageUsed)
newPayload = append(newPayload, *ledger.NewPayload(
registerIDToKey(flow.RegisterID{
Owner: s,
Key: "storage_used",
}),
utils.Uint64ToBinary(u),
))
}
return newPayload, nil
}
func incrementStorageUsed(p ledger.Payload, used map[string]uint64) error {
k, err := p.Key()
if err != nil {
return err
}
id, err := KeyToRegisterID(k)
if err != nil {
return err
}
if len([]byte(id.Owner)) != flow.AddressLength {
// not an address
return nil
}
if _, ok := used[id.Owner]; !ok {
used[id.Owner] = 0
}
used[id.Owner] = used[id.Owner] + uint64(registerSize(id, p))
return nil
}
func registerSize(id flow.RegisterID, p ledger.Payload) int {
address := flow.BytesToAddress([]byte(id.Owner))
key := id.Key
return fvm.RegisterSize(address, key, p.Value())
}