From 4f078eede0ef2049124f071637cf9f96eb543336 Mon Sep 17 00:00:00 2001 From: colindickson Date: Tue, 1 Aug 2023 07:32:01 -0400 Subject: [PATCH] added dmetering null plugin --- CHANGELOG.md | 6 ++++++ main.go | 2 ++ 2 files changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c5a781f..5daf97e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/main.go b/main.go index d4f7288..4cef6b6 100644 --- a/main.go +++ b/main.go @@ -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" @@ -33,6 +34,7 @@ func Main[B Block](chain *Chain[B]) { dauthtrust.Register() dmeteringgrpc.Register() dmeteringlogger.Register() + dmetering.RegisterNull() chain.Validate() chain.Init()