removing is_executed bug
This commit is contained in:
parent
127f6ae364
commit
dfb95559da
|
@ -70,6 +70,9 @@ async fn main() {
|
|||
|
||||
match update {
|
||||
UpdateOneof::BankingTransactionErrors(transaction) => {
|
||||
if transaction.error.is_none() {
|
||||
continue;
|
||||
}
|
||||
log::info!("got banking stage transaction erros");
|
||||
let sig = transaction.signature.to_string();
|
||||
match map_of_infos.get_mut(&sig) {
|
||||
|
|
|
@ -155,7 +155,6 @@ impl TransactionInfo {
|
|||
}
|
||||
}
|
||||
None => {
|
||||
self.is_executed = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue