diff options
author | Bas van Kervel <basvankervel@ziggo.nl> | 2015-06-08 18:43:58 +0800 |
---|---|---|
committer | Bas van Kervel <basvankervel@gmail.com> | 2015-06-11 20:17:27 +0800 |
commit | 1b59f890955c3658516daa958d0e4732004a78b7 (patch) | |
tree | 0c9e4feb630f89e07cd1b2fe2be0c26c4894ba16 /rpc/api/web3.go | |
parent | bbfa0a3dcb82e704828d1438261ff26c50c4ccc3 (diff) | |
download | go-tangerine-1b59f890955c3658516daa958d0e4732004a78b7.tar go-tangerine-1b59f890955c3658516daa958d0e4732004a78b7.tar.gz go-tangerine-1b59f890955c3658516daa958d0e4732004a78b7.tar.bz2 go-tangerine-1b59f890955c3658516daa958d0e4732004a78b7.tar.lz go-tangerine-1b59f890955c3658516daa958d0e4732004a78b7.tar.xz go-tangerine-1b59f890955c3658516daa958d0e4732004a78b7.tar.zst go-tangerine-1b59f890955c3658516daa958d0e4732004a78b7.zip |
added console command
Diffstat (limited to 'rpc/api/web3.go')
-rw-r--r-- | rpc/api/web3.go | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/rpc/api/web3.go b/rpc/api/web3.go index 42b0b7fd9..ed5008446 100644 --- a/rpc/api/web3.go +++ b/rpc/api/web3.go @@ -9,7 +9,7 @@ import ( ) const ( - Web3Version = "1.0.0" + Web3ApiVersion = "1.0" ) var ( @@ -63,9 +63,8 @@ func (self *web3Api) Name() string { return Web3ApiName } -// Version of the API this instance provides -func (self *web3Api) Version() string { - return Web3Version +func (self *web3Api) ApiVersion() string { + return Web3ApiVersion } // Calculates the sha3 over req.Params.Data |