github.com/devwanda/aphelion-staking@v0.33.9/store/codec.go (about)

     1  package store
     2  
     3  import (
     4  	amino "github.com/evdatsion/go-amino"
     5  
     6  	"github.com/devwanda/aphelion-staking/types"
     7  )
     8  
     9  var cdc = amino.NewCodec()
    10  
    11  func init() {
    12  	types.RegisterBlockAmino(cdc)
    13  }