Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ toolchain go1.24.2

replace (
// Coreum verison of the juno module
github.com/forbole/juno/v6 => github.com/CoreumFoundation/juno/v6 v6.0.0-20250926122726-22d4a6b1085f
github.com/forbole/juno/v6 => github.com/CoreumFoundation/juno/v6 v6.0.0-20251001165459-6c6142c7501d
// https://github.com/cosmos/cosmos-sdk/issues/14949
// pin the version of goleveldb to v1.0.1-0.20210819022825-2ae1ddf74ef7 required by SDK v47 upgrade guide.
// replace broken goleveldb
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ github.com/CoreumFoundation/coreum/v5 v5.0.0-20250526103302-5a3f05b11008 h1:zuNt
github.com/CoreumFoundation/coreum/v5 v5.0.0-20250526103302-5a3f05b11008/go.mod h1:LQbK4qqr0E1icUCcQT464isJfMeW2mybvX6XXkTpeGI=
github.com/CoreumFoundation/coreumbridge-xrpl/relayer v0.0.0-20250526113311-5229bda4c986 h1:80MHeVs1eJ5NWSeMpfXZOVXkfbOfPlATbeu6FPNI/OY=
github.com/CoreumFoundation/coreumbridge-xrpl/relayer v0.0.0-20250526113311-5229bda4c986/go.mod h1:2l9vGnucwn0hTIOWX2j91Aevykac8CowIhgMTJhp/N4=
github.com/CoreumFoundation/juno/v6 v6.0.0-20250926122726-22d4a6b1085f h1:opJKIotYxK2m4lcvnBdZpHkWByqy5KfjHqIqnztcqjQ=
github.com/CoreumFoundation/juno/v6 v6.0.0-20250926122726-22d4a6b1085f/go.mod h1:j6HuUZvZJHPYpkMY7s+tGDE1xnYRzkvgQSgpMF2ZCTw=
github.com/CoreumFoundation/juno/v6 v6.0.0-20251001165459-6c6142c7501d h1://M2yBPEy1+4kmy/7YMwMEewDmQJNPaUxJCZ9szLDr8=
github.com/CoreumFoundation/juno/v6 v6.0.0-20251001165459-6c6142c7501d/go.mod h1:j6HuUZvZJHPYpkMY7s+tGDE1xnYRzkvgQSgpMF2ZCTw=
github.com/CosmWasm/wasmd v0.54.0 h1:/txsBehV1xnAi46H1xwuuY6D4NySujBy+wa5+ryItS8=
github.com/CosmWasm/wasmd v0.54.0/go.mod h1:8Zu/rj6RHbJ8Gx0WdqsGeHvgnEQb0rqchpqhgMxASRU=
github.com/CosmWasm/wasmvm/v2 v2.2.2 h1:MaQMtaZN8L08N0uAlBlOICP+GWolibJsajHGo3fQ03w=
Expand Down
4 changes: 2 additions & 2 deletions modules/daily_refetch/handle_periodic_operations.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ func (m *Module) refetchMissingBlocks() error {
return err
}

workerCtx := parser.NewContext(parseCtx.Node, parseCtx.Database, parseCtx.Logger, parseCtx.Modules)
workerCtx := parser.NewContext(parseCtx.Node, parseCtx.Database, parseCtx.Logger, parseCtx.Modules, parseCtx.ModulesToOverwrite)
worker := parser.NewWorker(workerCtx, nil, 0)

log.Info().Int64("start height", startHeight).Int64("end height", latestBlock).
Msg("getting missing blocks and transactions from a day ago")
for _, block := range missingBlocks {
err = worker.Process(block)
err = worker.Process(block, false)
if err != nil {
return fmt.Errorf("error while re-fetching block %d: %s", block, err)
}
Expand Down