Fixed misstype (#10351)

* Fixed misstype

BadTransactonType => BadTransactionType

* fixed other insances of transacton
This commit is contained in:
Dan Acristinii
2019-02-14 12:25:44 +01:00
committed by Hernando Castano
parent 512343003d
commit d6c80c1672
3 changed files with 6 additions and 6 deletions

View File

@@ -97,7 +97,7 @@ fn should_return_correct_nonces_when_dropped_because_of_limit() {
Ok(())
]);
assert_eq!(txq.status().status.transaction_count, 3);
// tx2 transacton got dropped because of limit
// tx2 transaction got dropped because of limit
// tx1 and tx1' are kept, because they have lower insertion_ids so they are preferred.
assert_eq!(txq.next_nonce(TestClient::new(), &sender), None);
}