Created
May 17, 2018 16:18
-
-
Save liamsi/c8dc86fb770bce38eec45b832f511584 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"github.com/tendermint/go-amino" | |
) | |
func main() { | |
fmt.Println(fmt.Sprintf("Expected field type %X, got %X", amino.Typ3_8Byte, amino.Typ3_Interface)) | |
fmt.Println(fmt.Sprintf("Expected field type %v, got %v", amino.Typ3_8Byte, amino.Typ3_Interface)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment