Skip to content

Commit 7cc4a80

Browse files
authored
Merge branch 'release/1.1' into lib_advance_test_fix
2 parents 3bc9cff + 71999c3 commit 7cc4a80

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tests/TestHarness/launcher.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -359,22 +359,22 @@ def init_genesis(self):
359359
'initial_key': self.network.nodes['bios'].keys[0].pubkey,
360360
'initial_configuration': {
361361
'max_block_net_usage': 1048576,
362-
'target_block_net_usage_pct': 1000,
362+
'target_block_net_usage_pct': 10000,
363363
'max_transaction_net_usage': 524288,
364364
'base_per_transaction_net_usage': 12,
365365
'net_usage_leeway': 500,
366366
'context_free_discount_net_usage_num': 20,
367367
'context_free_discount_net_usage_den': 100,
368-
'max_block_cpu_usage': 500000 if self.args.max_block_cpu_usage is None else self.args.max_block_cpu_usage,
369-
'target_block_cpu_usage_pct': 1000,
370-
'max_transaction_cpu_usage': 475000 if self.args.max_transaction_cpu_usage is None else self.args.max_transaction_cpu_usage,
368+
'max_block_cpu_usage': 200000 if self.args.max_block_cpu_usage is None else self.args.max_block_cpu_usage,
369+
'target_block_cpu_usage_pct': 10,
370+
'max_transaction_cpu_usage': 150000 if self.args.max_transaction_cpu_usage is None else self.args.max_transaction_cpu_usage,
371371
'min_transaction_cpu_usage': 100,
372372
'max_transaction_lifetime': 3600,
373373
'deferred_trx_expiration_window': 600,
374374
'max_transaction_delay': 3888000,
375-
'max_inline_action_size': 524288,
376-
'max_inline_action_depth': 4,
377-
'max_authority_depth': 6
375+
'max_inline_action_size': 524287,
376+
'max_inline_action_depth': 10,
377+
'max_authority_depth': 10
378378
}
379379
}
380380
else:

0 commit comments

Comments
 (0)