mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-03 17:44:29 +00:00
5d39fe8873
* use eth.backend * net_version * add coinbase to the console test
10 lines
138 B
Go
10 lines
138 B
Go
package commands
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func (api *APIImpl) NetVersion(_ context.Context) uint64 {
|
|
return api.ethBackend.NetVersion()
|
|
}
|