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 97aa1fe commit ba377b8Copy full SHA for ba377b8
crates/pallet-domains/src/block_tree.rs
@@ -414,8 +414,10 @@ pub(crate) fn process_execution_receipt<T: Config>(
414
Error::InvalidDomainTransfers
415
);
416
417
- update_domain_transfers::<T>(domain_id, &execution_receipt.transfers, block_fees)
418
- .map_err(|_| Error::DomainTransfersTracking)?;
+ // FIXME: the domain balance bookkeeping check is problematic, disable it temporarily
+ // NOTE: we can't simple ignore the error because there will be partial state change persisted
419
+ // update_domain_transfers::<T>(domain_id, &execution_receipt.transfers, block_fees)
420
+ // .map_err(|_| Error::DomainTransfersTracking)?;
421
422
update_domain_runtime_upgrade_records::<T>(
423
domain_id,
0 commit comments