diff --git a/src/ethereum/ethash.rs b/src/ethereum/ethash.rs index 29fea71fe..99ffc3186 100644 --- a/src/ethereum/ethash.rs +++ b/src/ethereum/ethash.rs @@ -12,29 +12,21 @@ use evm::Factory; /// mainnet chains in the Olympic, Frontier and Homestead eras. pub struct Ethash { spec: Spec, -<<<<<<< HEAD pow: EthashManager, -======= factory: Factory, u64_params: RwLock>, u256_params: RwLock>, ->>>>>>> a350aae82b00d2bee0e6be8017d38b644121d3e9 } impl Ethash { pub fn new_boxed(spec: Spec) -> Box { -<<<<<<< HEAD Box::new(Ethash { spec: spec, pow: EthashManager::new(), -======= - Box::new(Ethash{ - spec: spec, // TODO [todr] should this return any specific factory? factory: Factory::default(), u64_params: RwLock::new(HashMap::new()), u256_params: RwLock::new(HashMap::new()) ->>>>>>> a350aae82b00d2bee0e6be8017d38b644121d3e9 }) }