openethereum/miner
Micah Zoltu 8099efe215 Fixes incorrect comment. (#10913)
I _believe_ (someone please double-check my work) that this comment is subtly incorrect and in fact the replacement will occur if the new gas price is exactly 12.5% (given current configuration) higher.

Relevant pieces of code:
```rust
fn bump_gas_price(old_gp: U256) -> U256 {
	old_gp.saturating_add(old_gp >> GAS_PRICE_BUMP_SHIFT)
}
```
```rust
let min_required_gp = bump_gas_price(*old_gp);
match min_required_gp.cmp(&new_gp) {
	cmp::Ordering::Greater => scoring::Choice::RejectNew,
	_ => scoring::Choice::ReplaceOld,
}
```
2019-07-24 12:28:48 +02:00
..
local-store updated parity-local-store to edition 2018 and removed redundant Error type (#10800) 2019-06-27 09:37:15 +02:00
price-info updated price-info to edition 2018 (#10801) 2019-06-27 17:29:24 +08:00
res/contracts Extract CallContract and RegistryInfo traits into their own crate (#10178) 2019-01-16 19:52:21 +01:00
src Fixes incorrect comment. (#10913) 2019-07-24 12:28:48 +02:00
stratum update parking-lot to 0.8 (#10845) 2019-07-05 15:19:38 +02:00
using-queue Improve logging and cleanup in miner around block sealing (#10745) 2019-07-04 18:03:22 +02:00
Cargo.toml update parking-lot to 0.8 (#10845) 2019-07-05 15:19:38 +02:00