File tree Expand file tree Collapse file tree 4 files changed +16
-2
lines changed Expand file tree Collapse file tree 4 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -140,6 +140,11 @@ jobs:
140
140
with :
141
141
btc-version : " 25.0"
142
142
143
+ # # Increase open file descriptors limit
144
+ - name : Increase Open File Descriptors
145
+ run : |
146
+ sudo prlimit --nofile=4096:4096
147
+
143
148
# # Run test matrix using restored cache of archive file
144
149
# # - Test will timeout after env.TEST_TIMEOUT minutes
145
150
- name : Run Tests
Original file line number Diff line number Diff line change @@ -194,10 +194,18 @@ impl SortitionsView {
194
194
. cur_sortition
195
195
. is_timed_out ( self . config . block_proposal_timeout , signer_db) ?
196
196
{
197
+ info ! (
198
+ "Current miner timed out, marking as invalid." ;
199
+ "current_sortition_consensus_hash" => ?self . cur_sortition. consensus_hash,
200
+ ) ;
197
201
self . cur_sortition . miner_status = SortitionMinerStatus :: InvalidatedBeforeFirstBlock ;
198
202
}
199
203
if let Some ( last_sortition) = self . last_sortition . as_mut ( ) {
200
204
if last_sortition. is_timed_out ( self . config . block_proposal_timeout , signer_db) ? {
205
+ info ! (
206
+ "Last miner timed out, marking as invalid." ;
207
+ "last_sortition_consensus_hash" => ?last_sortition. consensus_hash,
208
+ ) ;
201
209
last_sortition. miner_status = SortitionMinerStatus :: InvalidatedBeforeFirstBlock ;
202
210
}
203
211
}
Original file line number Diff line number Diff line change @@ -400,6 +400,7 @@ impl Signer {
400
400
"{self}: received a block proposal for a new block. Submit block for validation. " ;
401
401
"signer_sighash" => %signer_signature_hash,
402
402
"block_id" => %block_proposal. block. block_id( ) ,
403
+ "burn_height" => block_proposal. burn_height,
403
404
) ;
404
405
crate :: monitoring:: increment_block_proposals_received ( ) ;
405
406
let mut block_info = BlockInfo :: from ( block_proposal. clone ( ) ) ;
Original file line number Diff line number Diff line change @@ -1460,7 +1460,7 @@ impl BurnchainConfig {
1460
1460
rpc_ssl : false ,
1461
1461
username : None ,
1462
1462
password : None ,
1463
- timeout : 300 ,
1463
+ timeout : 60 ,
1464
1464
magic_bytes : BLOCKSTACK_MAGIC_MAINNET . clone ( ) ,
1465
1465
local_mining_public_key : None ,
1466
1466
process_exit_at_block_height : None ,
@@ -2376,7 +2376,7 @@ impl Default for MinerConfig {
2376
2376
first_attempt_time_ms : 10 ,
2377
2377
subsequent_attempt_time_ms : 120_000 ,
2378
2378
microblock_attempt_time_ms : 30_000 ,
2379
- nakamoto_attempt_time_ms : 20_000 ,
2379
+ nakamoto_attempt_time_ms : 5_000 ,
2380
2380
probability_pick_no_estimate_tx : 25 ,
2381
2381
block_reward_recipient : None ,
2382
2382
segwit : false ,
You can’t perform that action at this time.
0 commit comments