Skip to content

Commit

Permalink
Purge BudgetTransaction from banking_stage
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines committed Oct 8, 2018
1 parent 9350619 commit 8fe7b96
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/banking_stage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use bank::Bank;
use bincode::deserialize;
use budget_transaction::BudgetTransaction;
use counter::Counter;
use entry::Entry;
use log::Level;
Expand Down Expand Up @@ -208,7 +207,7 @@ impl BankingStage {
.zip(vers)
.filter_map(|(tx, ver)| match tx {
None => None,
Some((tx, _addr)) => if tx.verify_refs() && tx.verify_plan() && ver != 0 {
Some((tx, _addr)) => if tx.verify_refs() && ver != 0 {
Some(tx)
} else {
None
Expand Down

0 comments on commit 8fe7b96

Please sign in to comment.