Skip to content

Commit

Permalink
Update whole distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
Kbhat1 committed Jan 5, 2025
1 parent 2ecf3e9 commit 5db3504
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ replace (
github.com/cosmos/ibc-go/v3 => github.com/sei-protocol/sei-ibc-go/v3 v3.3.3
github.com/ethereum/go-ethereum => github.com/sei-protocol/go-ethereum v1.13.5-sei-9.0.20241224143343-21ee50facc96
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
github.com/sei-protocol/sei-db => github.com/sei-protocol/sei-db v0.0.47-0.20241231154605-e29a09b9faa8
github.com/sei-protocol/sei-db => github.com/sei-protocol/sei-db v0.0.47-0.20250105142248-40df232f7c9c
// Latest goleveldb is broken, we have to stick to this version
github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
github.com/tendermint/tendermint => github.com/sei-protocol/sei-tendermint v0.4.3
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1347,8 +1347,8 @@ github.com/sei-protocol/goutils v0.0.2 h1:Bfa7Sv+4CVLNM20QcpvGb81B8C5HkQC/kW1CQp
github.com/sei-protocol/goutils v0.0.2/go.mod h1:iYE2DuJfEnM+APPehr2gOUXfuLuPsVxorcDO+Tzq9q8=
github.com/sei-protocol/sei-cosmos v0.3.48 h1:kSDweeTaLZ4TByLqAD6/hmtgAhAJHwXU1beyqsVXJkQ=
github.com/sei-protocol/sei-cosmos v0.3.48/go.mod h1:XC417pB6NwxP/cQ2XTSZLzVnP8dMZ//4uCXS3SxFgoM=
github.com/sei-protocol/sei-db v0.0.47-0.20241231154605-e29a09b9faa8 h1:fcbSw66ILFwfPVVWe0uhhmAb6bhN4kWX6DMTqhti8SM=
github.com/sei-protocol/sei-db v0.0.47-0.20241231154605-e29a09b9faa8/go.mod h1:m5g7p0QeAS3dNJHIl28zQpzOgxQmvYqPb7t4hwgIOCA=
github.com/sei-protocol/sei-db v0.0.47-0.20250105142248-40df232f7c9c h1:IB3mhlNntxpebBfb7tu/Qgpk6v5t91SGfWsKSvUIbmQ=
github.com/sei-protocol/sei-db v0.0.47-0.20250105142248-40df232f7c9c/go.mod h1:m5g7p0QeAS3dNJHIl28zQpzOgxQmvYqPb7t4hwgIOCA=
github.com/sei-protocol/sei-iavl v0.2.0 h1:OisPjXiDT+oe+aeckzDEFgkZCYuUjHgs/PP8DPicN+I=
github.com/sei-protocol/sei-iavl v0.2.0/go.mod h1:qRf8QYUPfrAO7K6VDB2B2l/N7K5L76OorioGBcJBIbw=
github.com/sei-protocol/sei-ibc-go/v3 v3.3.3 h1:0kg1giMHiKMLXOCFLqH/9kqdl5bH+unzI8qRF6qwXzw=
Expand Down
6 changes: 3 additions & 3 deletions tools/migration/ss/migrator.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ func exportDistributionLeafNodes(
// We'll filter them by version in the callback.
stop, err := oldStateStore.RawIterate("distribution", func(key, value []byte, version int64) bool {
// If the record's version is outside our desired range, skip it.
if version < startVersion || version > endVersion {
return false
}
// if version < startVersion || version > endVersion {
// return false
// }

// Otherwise, export it via the channel.
ch <- types.RawSnapshotNode{
Expand Down

0 comments on commit 5db3504

Please sign in to comment.