Skip to content

Instantly share code, notes, and snippets.

@liamsi
Created May 17, 2018 16:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liamsi/c8dc86fb770bce38eec45b832f511584 to your computer and use it in GitHub Desktop.
Save liamsi/c8dc86fb770bce38eec45b832f511584 to your computer and use it in GitHub Desktop.
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