* ibc: modular client messages * more updates * remove client messages * fixes * fix tests * lint * Apply suggestions from code review Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com> * codec.go tests * cleanup exported * MsgCreateClient test * msg tests * Apply suggestions from code review Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com> * fix tests * proto files update * errors * address comments * spec changes * add sanity check test cases * add additional sanity check * fix expPass * fix build and remove unnecessary test since validatebasic is checked in the msg Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com> Co-authored-by: Aditya Sripal <adityasripal@gmail.com> Co-authored-by: Colin Axner <colinaxner@berkeley.edu>
11 lines
175 B
Go
11 lines
175 B
Go
package localhost
|
|
|
|
import (
|
|
"github.com/cosmos/cosmos-sdk/x/ibc/09-localhost/types"
|
|
)
|
|
|
|
// Name returns the IBC client name
|
|
func Name() string {
|
|
return types.SubModuleName
|
|
}
|