Revert "detele everything"

This reverts commit d02c5d1e30.
This commit is contained in:
Zach Ramsay
2018-07-10 11:22:25 -04:00
parent 2f4ab0c068
commit 44dad6d70b
721 changed files with 99035 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
package main
import (
"fmt"
"os"
amino "github.com/tendermint/go-amino"
crypto "github.com/tendermint/tendermint/crypto"
)
func main() {
cdc := amino.NewCodec()
crypto.RegisterAmino(cdc)
cdc.PrintTypes(os.Stdout)
fmt.Println("")
}