IBC test just rawtx, coin ibc in that module

This commit is contained in:
Ethan Frey
2017-07-27 16:27:06 -04:00
parent a925c8545c
commit 374f078b79
3 changed files with 145 additions and 62 deletions
+9
View File
@@ -0,0 +1,9 @@
package errors
// CheckErr is the type of all the check functions here
type CheckErr func(error) bool
// NoErr is useful for test cases when you want to fulfil the CheckErr type
func NoErr(err error) bool {
return err == nil
}