mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-05 02:24:29 +00:00
a4f8175136
Updated bor consensus folder structure
7 lines
160 B
Go
7 lines
160 B
Go
package abi
|
|
|
|
type ABI interface {
|
|
Pack(name string, args ...interface{}) ([]byte, error)
|
|
UnpackIntoInterface(v interface{}, name string, data []byte) error
|
|
}
|