mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-29 16:13:47 +00:00
13 lines
228 B
Go
13 lines
228 B
Go
package web3
|
|
|
|
import "runtime"
|
|
|
|
type API struct{}
|
|
|
|
func (p *API) ClientVersion() string {
|
|
// TODO add version
|
|
name := "Shisui"
|
|
name += "/" + runtime.GOOS + "-" + runtime.GOARCH
|
|
name += "/" + runtime.Version()
|
|
return name
|
|
}
|