cargo fmt

This commit is contained in:
Michael Vines 2019-01-04 16:39:04 -08:00
parent 1f6346d880
commit 8b357dcb32
No known key found for this signature in database
GPG Key ID: 33F4FDEC4E0E88BD
2 changed files with 4 additions and 4 deletions

View File

@ -127,7 +127,7 @@ impl AccountsDB {
}
}
}
fn load_account(
&self,
tx: &Transaction,
@ -174,7 +174,7 @@ impl AccountsDB {
Ok(called_accounts)
}
}
fn load_accounts(
&self,
txs: &[Transaction],

View File

@ -394,7 +394,7 @@ impl Bank {
fn lock_accounts(&self, txs: &[Transaction]) -> Vec<Result<()>> {
self.accounts.lock_accounts(txs)
}
fn unlock_accounts(&self, txs: &[Transaction], results: &[Result<()>]) {
self.accounts.unlock_accounts(txs, results)
}
@ -903,7 +903,7 @@ impl Bank {
}
}
}
pub fn add_account_subscription(
&self,
bank_sub_id: Pubkey,