Skip to content

Commit

Permalink
gofmt
Browse files Browse the repository at this point in the history
  • Loading branch information
i-norden committed Oct 19, 2023
1 parent 670b72f commit 82f754f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion node/config/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,6 @@ type Events struct {
// that shifts as the chain progresses.
FilterThresholdEpoch uint64


// DatabasePath is the full path to a sqlite database that will be used to index actor events to
// support the historic filter APIs. If the database does not exist it will be created. The directory containing
// the database must already exist and be writeable. If a relative path is provided here, sqlite treats it as
Expand Down
2 changes: 1 addition & 1 deletion node/modules/actorevent.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func EthEventAPI(cfg config.FevmConfig) func(helpers.MetricsCtx, repo.LockedRepo
ee := &full.EthEvent{
Chain: cs,
MaxFilterHeightRange: abi.ChainEpoch(cfg.Events.MaxFilterHeightRange),
FilterThresholdSet: cfg.Events.FilterThresholdSet,
FilterThresholdSet: cfg.Events.FilterThresholdSet,
FilterThresholdEpoch: abi.ChainEpoch(cfg.Events.FilterThresholdEpoch),
SubscribtionCtx: ctx,
}
Expand Down

0 comments on commit 82f754f

Please sign in to comment.