Renamed wire.go to codec.go (#3827)

* Renamed wire.go to codec.go

- Wire was the previous name of amino
- Codec describes the file better than `wire` & `amino`

Signed-off-by: Marko Baricevic <marbar3778@yahoo.com>

* ide error

* rename amino.go to codec.go
This commit is contained in:
Marko
2019-07-23 15:35:36 +02:00
committed by Jack Zampolin
parent abc30821f4
commit 5d0e7034e8
22 changed files with 0 additions and 0 deletions

12
node/codec.go Normal file
View File

@ -0,0 +1,12 @@
package node
import (
amino "github.com/tendermint/go-amino"
cryptoAmino "github.com/tendermint/tendermint/crypto/encoding/amino"
)
var cdc = amino.NewCodec()
func init() {
cryptoAmino.RegisterAmino(cdc)
}