* reenable tx search * removed not needed argument * register types for decoding * trying to fix indexing tests * added tx hash query test * Fix x/bank tagging * remove dead code * remove print * extended tests for tx querying * changelog * added txs address querying * linted * rename * use prefix for bech32 addresses in tags * changed error message * Fix tiny linter issue
10 lines
217 B
Go
10 lines
217 B
Go
package types
|
|
|
|
import wire "github.com/cosmos/cosmos-sdk/wire"
|
|
|
|
// Register the sdk message type
|
|
func RegisterWire(cdc *wire.Codec) {
|
|
cdc.RegisterInterface((*Msg)(nil), nil)
|
|
cdc.RegisterInterface((*Tx)(nil), nil)
|
|
}
|