mirror of
https://github.com/tendermint/tendermint.git
synced 2026-07-20 15:02:33 +00:00
d2c05bc5b9
This reverts commit 96a3502
13 lines
175 B
Go
13 lines
175 B
Go
package state
|
|
|
|
import (
|
|
"github.com/tendermint/go-amino"
|
|
"github.com/tendermint/tendermint/crypto"
|
|
)
|
|
|
|
var cdc = amino.NewCodec()
|
|
|
|
func init() {
|
|
crypto.RegisterAmino(cdc)
|
|
}
|