From 2a2c24855c0fdfa6756fbf6a53f7f819d11fbf33 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Mon, 28 Mar 2016 21:19:28 +0200 Subject: [PATCH] Fix build. --- rpc/src/v1/tests/eth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/src/v1/tests/eth.rs b/rpc/src/v1/tests/eth.rs index 168b9a283..5d3a0bf29 100644 --- a/rpc/src/v1/tests/eth.rs +++ b/rpc/src/v1/tests/eth.rs @@ -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())); }