Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

multinode test #218

Merged
merged 7 commits into from
May 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/bank.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ impl Bank {
/// Deduct tokens from the 'from' address the account has sufficient
/// funds and isn't a duplicate.
pub fn process_verified_transaction_debits(&self, tr: &Transaction) -> Result<()> {
info!("Transaction {}", tr.data.tokens);
let bals = self.balances
.read()
.expect("'balances' read lock in process_verified_transaction_debits");
Expand Down
Loading