erigon-pulse/consensus/bor/abi/interface.go

7 lines
160 B
Go
Raw Normal View History

package abi
type ABI interface {
Pack(name string, args ...interface{}) ([]byte, error)
UnpackIntoInterface(v interface{}, name string, data []byte) error
}