github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/tm2/pkg/iavl/wire.go (about) 1 package iavl 2 3 import ( 4 "github.com/gnolang/gno/tm2/pkg/amino" 5 ) 6 7 var cdc = amino.NewCodec() 8 9 func init() { 10 // NOTE: It's important that there be no conflicts here, 11 // as that would change the canonical representations. 12 RegisterWire(cdc) 13 } 14 15 func RegisterWire(cdc *amino.Codec) { 16 // TODO 17 }