Skip to content

Commit 2dfd5b8

Browse files
committed
fix(utils): adjust witness count calculation logic
Updated the witness count calculation in `testnet_cleanup.py`.
1 parent e22d84b commit 2dfd5b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cardano_node_tests/utils/testnet_cleanup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ def return_funds_to_faucet(
251251
txins, skeys = flatten_tx_inputs(tx_inputs=batch)
252252
fund_tx_files = clusterlib.TxFiles(signing_key_files=skeys)
253253
batch_tx_name = f"{tx_name}_batch{batch_num}"
254-
witness_count_add = max(2, len(skeys) // 20)
254+
witness_count_add = max(2, len(skeys) // 10)
255255

256256
# Try to return funds; don't mind if there's not enough funds for fees etc.
257257
try:

0 commit comments

Comments
 (0)