From fdc3fbe6c1da49531e06181337f3a571a8cf9dc4 Mon Sep 17 00:00:00 2001 From: Cosmic Vagabond <121588426+cosmic-vagabond@users.noreply.github.com> Date: Fri, 24 Nov 2023 11:49:12 +0100 Subject: [PATCH] fix: increment incentive module version --- x/incentive/module.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/incentive/module.go b/x/incentive/module.go index 597b4627f..2ba2bb2c1 100644 --- a/x/incentive/module.go +++ b/x/incentive/module.go @@ -137,7 +137,7 @@ func (am AppModule) ExportGenesis(ctx sdk.Context, cdc codec.JSONCodec) json.Raw } // ConsensusVersion is a sequence number for state-breaking change of the module. It should be incremented on each consensus-breaking change introduced by the module. To avoid wrong/empty versions, the initial version should be set to 1 -func (AppModule) ConsensusVersion() uint64 { return 5 } +func (AppModule) ConsensusVersion() uint64 { return 6 } // BeginBlock contains the logic that is automatically triggered at the beginning of each block func (am AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock) {}