reveal surprise

This commit is contained in:
debris 2016-02-03 17:30:02 +01:00
parent d467ac76b0
commit 6baad0e43c
3 changed files with 4 additions and 2 deletions

View File

@ -17,4 +17,5 @@ ethcore-util = { path = "../util" }
ethcore = { path = "../ethcore" }
ethsync = { path = "../sync" }
clippy = "0.0.37"
target_info = "0.1.0"

View File

@ -4,6 +4,7 @@
#![plugin(serde_macros)]
#![plugin(clippy)]
extern crate target_info;
extern crate serde;
extern crate serde_json;
extern crate jsonrpc_core;

View File

@ -1,4 +1,5 @@
//! Web3 rpc implementation.
use target_info::Target;
use jsonrpc_core::*;
use v1::traits::Web3;
@ -13,8 +14,7 @@ impl Web3Client {
impl Web3 for Web3Client {
fn client_version(&self, params: Params) -> Result<Value, Error> {
match params {
//Params::None => Ok(Value::String("parity/0.1.0/-/rust1.7-nightly".to_owned())),
Params::None => Ok(Value::String("surprise/0.1.0/surprise/surprise".to_owned())),
Params::None => Ok(Value::String(format!("parity/0.9.0/{}/rust1.8-nightly", Target::os()).to_owned())),
_ => Err(Error::invalid_params())
}
}