mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 14:46:42 +00:00
7 lines
228 B
Go
7 lines
228 B
Go
package abi
|
|
|
|
//go:generate mockgen -destination=./abi_mock.go -package=api . ABI
|
|
type ABI interface {
|
|
Pack(name string, args ...interface{}) ([]byte, error)
|
|
UnpackIntoInterface(v interface{}, name string, data []byte) error
|
|
}
|