fixed transaction queue merge conflict

This commit is contained in:
debris 2016-04-19 16:20:04 +02:00
parent 46c8324c52
commit 314ced57c8

View File

@ -1220,7 +1220,7 @@ mod test {
#[test] #[test]
fn should_return_correct_nonces_when_dropped_because_of_limit() { fn should_return_correct_nonces_when_dropped_because_of_limit() {
// given // given
let mut txq = TransactionQueue::with_limits(2, 2); let mut txq = TransactionQueue::with_limit(2);
let tx = new_tx(); let tx = new_tx();
let (tx1, tx2) = new_txs(U256::one()); let (tx1, tx2) = new_txs(U256::one());
let sender = tx1.sender().unwrap(); let sender = tx1.sender().unwrap();