Remove extraneous print.
This commit is contained in:
parent
4149f7fd1c
commit
c241a56fb0
|
@ -434,7 +434,6 @@ impl AccountsDB {
|
||||||
/// to occur in place.
|
/// to occur in place.
|
||||||
fn store_account(&self, fork: Fork, purge: bool, pubkey: &Pubkey, account: &Account) {
|
fn store_account(&self, fork: Fork, purge: bool, pubkey: &Pubkey, account: &Account) {
|
||||||
if account.tokens == 0 && purge {
|
if account.tokens == 0 && purge {
|
||||||
println!("store purge {} {:?}", fork, pubkey);
|
|
||||||
// purge if balance is 0 and no checkpoints
|
// purge if balance is 0 and no checkpoints
|
||||||
let index = self.index_info.index.read().unwrap();
|
let index = self.index_info.index.read().unwrap();
|
||||||
let map = index.get(&pubkey).unwrap();
|
let map = index.get(&pubkey).unwrap();
|
||||||
|
|
Loading…
Reference in New Issue