Skip to content

Commit

Permalink
e3: split "changed keys" iterator to simplify (#7086)
Browse files Browse the repository at this point in the history
  • Loading branch information
AskAlexSharov authored Mar 13, 2023
1 parent 9f6b842 commit f2d99f9
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
6 changes: 5 additions & 1 deletion cmd/rpcdaemon/commands/debug_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,12 @@ func (api *PrivateDebugAPIImpl) GetModifiedAccountsByNumber(ctx context.Context,
// getModifiedAccountsV3 returns a list of addresses that were modified in the block range
// [startNum:endNum)
func getModifiedAccountsV3(tx kv.TemporalTx, startTxNum, endTxNum uint64) ([]common.Address, error) {
it, err := tx.HistoryRange(temporal.AccountsHistory, int(startTxNum), int(endTxNum), order.Asc, -1)
if err != nil {
return nil, err
}

changedAddrs := make(map[common.Address]struct{})
it, _ := tx.HistoryRange(temporal.AccountsHistory, int(startTxNum), int(endTxNum), order.Asc, -1)
for it.HasNext() {
k, _, err := it.Next()
if err != nil {
Expand Down
16 changes: 10 additions & 6 deletions core/state/temporal/kv_temporal.go
Original file line number Diff line number Diff line change
Expand Up @@ -343,15 +343,19 @@ func (tx *Tx) HistoryRange(name kv.History, fromTs, toTs int, asc order.By, limi
}
switch name {
case AccountsHistory:
it = tx.agg.AccountHistoryIterateChanged(fromTs, toTs, asc, limit, tx)
return it, nil
it, err = tx.agg.AccountHistoryIterateChanged(fromTs, toTs, asc, limit, tx)
case StorageHistory:
it = tx.agg.StorageHistoryIterateChanged(fromTs, toTs, asc, limit, tx)
return it, nil
it, err = tx.agg.StorageHistoryIterateChanged(fromTs, toTs, asc, limit, tx)
case CodeHistory:
it = tx.agg.CodeHistoryIterateChanged(fromTs, toTs, asc, limit, tx)
return it, nil
it, err = tx.agg.CodeHistoryIterateChanged(fromTs, toTs, asc, limit, tx)
default:
return nil, fmt.Errorf("unexpected history name: %s", name)
}
if err != nil {
return nil, err
}
if closer, ok := it.(kv.Closer); ok {
tx.resourcesToClose = append(tx.resourcesToClose, closer)
}
return it, err
}
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/ledgerwatch/erigon
go 1.18

require (
github.com/ledgerwatch/erigon-lib v0.0.0-20230313023514-6f17999b1f89
github.com/ledgerwatch/erigon-lib v0.0.0-20230313075942-ae07c2744483
github.com/ledgerwatch/erigon-snapshot v1.1.1-0.20230306083105-1391330d62a3
github.com/ledgerwatch/log/v3 v3.7.0
github.com/ledgerwatch/secp256k1 v1.0.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -517,8 +517,8 @@ github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/kylelemons/godebug v0.0.0-20170224010052-a616ab194758 h1:0D5M2HQSGD3PYPwICLl+/9oulQauOuETfgFvhBDffs0=
github.com/leanovate/gopter v0.2.9 h1:fQjYxZaynp97ozCzfOyOuAGOU4aU/z37zf/tOujFk7c=
github.com/leanovate/gopter v0.2.9/go.mod h1:U2L/78B+KVFIx2VmW6onHJQzXtFb+p5y3y2Sh+Jxxv8=
github.com/ledgerwatch/erigon-lib v0.0.0-20230313023514-6f17999b1f89 h1:VavyYnW8r5wyjxM+lU4nH3BKOEUyDr/nuNiLPJrvlDs=
github.com/ledgerwatch/erigon-lib v0.0.0-20230313023514-6f17999b1f89/go.mod h1:sKLWgIyFuajTu7nu+cahKhReP+CZW57R5jFUYtzvn44=
github.com/ledgerwatch/erigon-lib v0.0.0-20230313075942-ae07c2744483 h1:59UeMgiynV+JflMPfQCH+I4qxVIer0wSgtEJvX+sUV8=
github.com/ledgerwatch/erigon-lib v0.0.0-20230313075942-ae07c2744483/go.mod h1:sKLWgIyFuajTu7nu+cahKhReP+CZW57R5jFUYtzvn44=
github.com/ledgerwatch/erigon-snapshot v1.1.1-0.20230306083105-1391330d62a3 h1:tfzawK1gIIgRjVZeANXOr0Ziu+kqCIBuKMe0TXfl5Aw=
github.com/ledgerwatch/erigon-snapshot v1.1.1-0.20230306083105-1391330d62a3/go.mod h1:3AuPxZc85jkehh/HA9h8gabv5MSi3kb/ddtzBsTVJFo=
github.com/ledgerwatch/log/v3 v3.7.0 h1:aFPEZdwZx4jzA3+/Pf8wNDN5tCI0cIolq/kfvgcM+og=
Expand Down

0 comments on commit f2d99f9

Please sign in to comment.