feat!: Define Genesis state transition (#15999)

This commit is contained in:
Marko
2023-05-03 08:58:58 +00:00
committed by GitHub
parent 672b1f9e15
commit d31f2964b0
14 changed files with 79 additions and 44 deletions
+5 -1
View File
@@ -38,4 +38,8 @@ Ref: https://keepachangelog.com/en/1.0.0/
### API-Breaking Changes
- (store)[14635](https://github.com/cosmos/cosmos-sdk/pull/14635) Add error handling to all methods on the `KVStore` interface
* (store)[14635](https://github.com/cosmos/cosmos-sdk/pull/14635) Add error handling to all methods on the `KVStore` interface
### Features
* (genesis) [#15999](https://github.com/cosmos/cosmos-sdk/pull/15999) Add `GenesisTxHandler` interface
+6
View File
@@ -0,0 +1,6 @@
package genesis
// TxHandler is an interface that modules can implement to provide genesis state transitions
type TxHandler interface {
ExecuteGenesisTx([]byte) error
}