x/crisis: In-Process CLI Integration Tests (#6634)

* init commit

* fix tests

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
This commit is contained in:
Alexander Bezobchuk
2020-07-08 08:23:34 +00:00
committed by GitHub
co-authored by mergify[bot]
parent 83e71049e6
commit 3de1c7d4fd
7 changed files with 166 additions and 22 deletions
+4 -1
View File
@@ -1,6 +1,8 @@
package module
import "github.com/cosmos/cosmos-sdk/codec/types"
import (
"github.com/cosmos/cosmos-sdk/codec/types"
)
// InterfaceModule is an interface that modules can implement in order to
// register their interfaces and implementations in an InterfaceRegistry
@@ -16,6 +18,7 @@ func (bm BasicManager) RegisterInterfaceModules(registry types.InterfaceRegistry
if !ok {
continue
}
im.RegisterInterfaceTypes(registry)
}
}