removing is_executed bug

This commit is contained in:
Godmode Galactus 2023-10-26 21:38:46 +02:00
parent 127f6ae364
commit dfb95559da
No known key found for this signature in database
GPG Key ID: A04142C71ABB0DEA
2 changed files with 3 additions and 1 deletions

View File

@ -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) {

View File

@ -155,7 +155,6 @@ impl TransactionInfo {
}
}
None => {
self.is_executed = true;
}
}
}