Fixed comments after review and test after rebase

This commit is contained in:
Anton Gavrilov
2017-07-31 18:10:06 +02:00
parent 8826fdb03a
commit 141c2fd34a
7 changed files with 8 additions and 14 deletions

View File

@@ -168,17 +168,10 @@ impl From<ethjson::spec::Params> for CommonParams {
nonce_cap_increment: p.nonce_cap_increment.map_or(64, Into::into),
remove_dust_contracts: p.remove_dust_contracts.unwrap_or(false),
wasm: p.wasm.unwrap_or(false),
<<<<<<< HEAD
<<<<<<< HEAD
gas_limit_bound_divisor: p.gas_limit_bound_divisor.into(),
block_reward: p.block_reward.map_or_else(U256::zero, Into::into),
registrar: p.registrar.map_or_else(Address::new, Into::into),
=======
apply_reward: p.apply_reward.unwrap_or(true),
>>>>>>> 7312803... Working test with block reward added
=======
apply_reward: p.apply_reward.unwrap_or(true),
>>>>>>> bb043ba2fdcc2b5d049ca8c5f5db233cc5f82aaf
}
}
}