Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-wright committed Jun 27, 2023
1 parent fcb4a80 commit b72632d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/application/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1003,9 +1003,9 @@ impl<B: Backend> State<B> {
self.node_info.set(node, node_info);
},
TransactionSender::AccountOwner(account) => {
let mut node_info = self.account_info.get(&account).unwrap();
node_info.nonce += 1;
self.account_info.set(account, node_info);
let mut account_info = self.account_info.get(&account).unwrap();
account_info.nonce += 1;
self.account_info.set(account, account_info);
},
}
}
Expand Down

0 comments on commit b72632d

Please sign in to comment.