github.com/annchain/OG@v0.0.9/og/archive/raw_tx.go (about) 1 package archive 2 3 import "github.com/annchain/OG/og/types" 4 5 //go:generate msgp 6 7 //msgp:tuple RawArchive 8 type RawArchive struct { 9 Archive 10 } 11 12 func (a *RawArchive) Txi() types.Txi { 13 return &a.Archive 14 } 15 16 //msgp:tuple RawArchive 17 type RawArchives []*RawArchive