Initial commit

This commit is contained in:
Anca Zamfir
2019-03-26 09:58:30 +01:00
parent eb1573c683
commit 6428cba446
9 changed files with 2827 additions and 0 deletions

13
blockchain_new/wire.go Normal file
View File

@ -0,0 +1,13 @@
package blockchain_new
import (
amino "github.com/tendermint/go-amino"
"github.com/tendermint/tendermint/types"
)
var cdc = amino.NewCodec()
func init() {
RegisterBlockchainMessages(cdc)
types.RegisterBlockAmino(cdc)
}