Skip to content

Commit

Permalink
added dmetering null plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
colindickson committed Aug 1, 2023
1 parent d0db0f9 commit 4f078ee
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ Operators, you should copy/paste content of this content straight to your projec

If you were at `firehose-core` version `1.0.0` and are bumping to `1.1.0`, you should copy the content between those 2 version to your own repository, replacing placeholder value `fire{chain}` with your chain's own binary.

## v0.1.6

### Fixed

* Fixed bug where `null` dmetering plugin was not able to be registered.

## v0.1.5

### Changed
Expand Down
2 changes: 2 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import (
dauthnull "github.com/streamingfast/dauth/null"
dauthtrust "github.com/streamingfast/dauth/trust"
"github.com/streamingfast/dlauncher/launcher"
"github.com/streamingfast/dmetering"
dmeteringgrpc "github.com/streamingfast/dmetering/grpc"
dmeteringlogger "github.com/streamingfast/dmetering/logger"
"github.com/streamingfast/logging"
Expand All @@ -33,6 +34,7 @@ func Main[B Block](chain *Chain[B]) {
dauthtrust.Register()
dmeteringgrpc.Register()
dmeteringlogger.Register()
dmetering.RegisterNull()

chain.Validate()
chain.Init()
Expand Down

0 comments on commit 4f078ee

Please sign in to comment.