fixed expect position && text

This commit is contained in:
Svyatoslav Nikolsky 2016-12-15 15:56:51 +03:00
parent 469e89d687
commit d1bbf6af16
1 changed files with 2 additions and 2 deletions

View File

@ -116,7 +116,6 @@ impl AsyncVerifier {
} }
} else { } else {
ChainMemoryPoolTransactionOutputProvider::for_block(chain.clone()) ChainMemoryPoolTransactionOutputProvider::for_block(chain.clone())
.expect("no error when creating for block")
}; };
execute_verification_task(&sink, &prevout_provider, &verifier, task) execute_verification_task(&sink, &prevout_provider, &verifier, task)
}, },
@ -252,10 +251,11 @@ impl ChainMemoryPoolTransactionOutputProvider {
ChainMemoryPoolTransactionOutputProvider::for_double_spend_check_result(chain, check_result) ChainMemoryPoolTransactionOutputProvider::for_double_spend_check_result(chain, check_result)
} }
pub fn for_block(chain: ChainRef) -> Result<Self, verification::TransactionError> { pub fn for_block(chain: ChainRef) -> Self {
// we have to check if there are another in-mempool transactions which spent same outputs here // we have to check if there are another in-mempool transactions which spent same outputs here
let check_result = DoubleSpendCheckResult::NoDoubleSpend; let check_result = DoubleSpendCheckResult::NoDoubleSpend;
ChainMemoryPoolTransactionOutputProvider::for_double_spend_check_result(chain, check_result) ChainMemoryPoolTransactionOutputProvider::for_double_spend_check_result(chain, check_result)
.expect("check_result is NoDoubleSpend; NoDoubleSpend means no error; qed")
} }
fn for_double_spend_check_result(chain: ChainRef, check_result: DoubleSpendCheckResult) -> Result<Self, verification::TransactionError> { fn for_double_spend_check_result(chain: ChainRef, check_result: DoubleSpendCheckResult) -> Result<Self, verification::TransactionError> {