Remove extraneous print.

This commit is contained in:
Stephen Akridge 2019-02-26 11:11:24 -08:00 committed by sakridge
parent 4149f7fd1c
commit c241a56fb0
1 changed files with 0 additions and 1 deletions

View File

@ -434,7 +434,6 @@ impl AccountsDB {
/// to occur in place.
fn store_account(&self, fork: Fork, purge: bool, pubkey: &Pubkey, account: &Account) {
if account.tokens == 0 && purge {
println!("store purge {} {:?}", fork, pubkey);
// purge if balance is 0 and no checkpoints
let index = self.index_info.index.read().unwrap();
let map = index.get(&pubkey).unwrap();