Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: openethereum/parity-ethereum
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bb63b1cbb5657b0088443eef06e2e56567436527
Choose a base ref
..
head repository: openethereum/parity-ethereum
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8678e5e484d4aa033176f049d6cb9c833ad09a3a
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 rpc/src/v1/impls/eth.rs
4 changes: 2 additions & 2 deletions rpc/src/v1/impls/eth.rs
Original file line number Diff line number Diff line change
@@ -164,11 +164,11 @@ impl<C, S: ?Sized, M, EM> EthClient<C, S, M, EM> where
miner: uncle.author().clone().into(),
state_root: uncle.state_root().clone().into(),
transactions_root: uncle.transactions_root().clone().into(),
number: Some(uncle.number().clone().into()),
number: Some(uncle.number().into()),
gas_used: uncle.gas_used().clone().into(),
gas_limit: uncle.gas_limit().clone().into(),
logs_bloom: uncle.log_bloom().clone().into(),
timestamp: uncle.timestamp().clone().into(),
timestamp: uncle.timestamp().into(),
difficulty: uncle.difficulty().clone().into(),
total_difficulty: (uncle.difficulty().clone() + parent_difficulty).into(),
receipts_root: uncle.receipts_root().clone().into(),