mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-24 20:47:16 +00:00
9d172ae125
* Rebuilding the devnet tool for better quality * Added README * deleted former devnettest folder * Correction changes * Implementation node connection through enode for two nodes * synced two nodes, moving to logging * Fixed lint
9 lines
139 B
Go
9 lines
139 B
Go
package models
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// ErrInvalidArgument for invalid arguments
|
|
ErrInvalidArgument = errors.New("invalid argument")
|
|
)
|