mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-28 14:47:16 +00:00
10 lines
138 B
Go
10 lines
138 B
Go
package commands
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func (api *NetAPIImpl) Version(_ context.Context) uint64 {
|
|
return api.ethBackend.NetVersion()
|
|
}
|