We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f21d965 commit 7069b0cCopy full SHA for 7069b0c
rust/processor/src/processors/fungible_asset_processor.rs
@@ -365,7 +365,7 @@ impl ProcessorTrait for FungibleAssetProcessor {
365
mut fungible_asset_balances,
366
mut current_fungible_asset_balances,
367
current_unified_fungible_asset_balances,
368
- coin_supply,
+ mut coin_supply,
369
) = parse_v2_coin(&transactions).await;
370
371
let processing_duration_in_secs = processing_start.elapsed().as_secs_f64();
@@ -389,6 +389,10 @@ impl ProcessorTrait for FungibleAssetProcessor {
389
current_fungible_asset_balances.clear();
390
}
391
392
+ if self.deprecated_tables.contains(TableFlags::COIN_SUPPLY) {
393
+ coin_supply.clear();
394
+ }
395
+
396
let tx_result = insert_to_db(
397
self.get_pool(),
398
self.name(),
0 commit comments