fix indentation

This commit is contained in:
Robert Habermeier
2017-05-09 14:24:45 +02:00
parent fd4d7c4b68
commit 9358f81ac1
3 changed files with 47 additions and 47 deletions

View File

@@ -131,7 +131,7 @@ impl TransactionQueue {
if self.by_hash.contains_key(&hash) { return Err(TransactionError::AlreadyImported) }
let res = match self.by_account.entry(sender) {
let res = match self.by_account.entry(sender) {
Entry::Vacant(entry) => {
entry.insert(AccountTransactions {
cur_nonce: CurrentNonce::Assumed(nonce),