Fix build.

This commit is contained in:
Gav Wood 2016-03-28 21:19:28 +02:00
parent 712302391c
commit 2a2c24855c
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ fn rpc_eth_mining() {
#[test]
fn rpc_eth_gas_price() {
let request = r#"{"jsonrpc": "2.0", "method": "eth_gasPrice", "params": [], "id": 1}"#;
let response = r#"{"jsonrpc":"2.0","result":"0x0ba43b7400","id":1}"#;
let response = r#"{"jsonrpc":"2.0","result":"0x04a817c800","id":1}"#;
assert_eq!(EthTester::default().io.handle_request(request), Some(response.to_owned()));
}