mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-23 04:03:49 +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
|
|
}
|