File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
mithril-aggregator/src/dependency_injection
mithril-signer/src/runtime Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -741,8 +741,8 @@ impl DependenciesBuilder {
741
741
}
742
742
743
743
async fn build_transaction_parser ( & mut self ) -> Result < Arc < dyn TransactionParser > > {
744
- // TODO: 'allow_unparsable_block' parameter should be configurable and its default value set to false
745
- let allow_unparsable_block = true ;
744
+ // TODO: 'allow_unparsable_block' parameter should be configurable
745
+ let allow_unparsable_block = false ;
746
746
let transaction_parser =
747
747
CardanoTransactionParser :: new ( self . get_logger ( ) . await ?, allow_unparsable_block) ;
748
748
Original file line number Diff line number Diff line change @@ -266,8 +266,8 @@ impl<'a> ServiceBuilder for ProductionServiceBuilder<'a> {
266
266
) ) ;
267
267
let mithril_stake_distribution_signable_builder =
268
268
Arc :: new ( MithrilStakeDistributionSignableBuilder :: default ( ) ) ;
269
- // TODO: 'allow_unparsable_block' parameter should be configurable and its default value set to false
270
- let allow_unparsable_block = true ;
269
+ // TODO: 'allow_unparsable_block' parameter should be configurable
270
+ let allow_unparsable_block = false ;
271
271
let transaction_parser = Arc :: new ( CardanoTransactionParser :: new (
272
272
slog_scope:: logger ( ) ,
273
273
allow_unparsable_block,
You can’t perform that action at this time.
0 commit comments