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 @@ -153,6 +153,11 @@ jobs:
153
153
with :
154
154
btc-version : " 25.0"
155
155
156
+ # # Increase open file descriptors limit
157
+ - name : Increase Open File Descriptors
158
+ run : |
159
+ sudo prlimit --nofile=4096:4096
160
+
156
161
# # Run test matrix using restored cache of archive file
157
162
# # - Test will timeout after env.TEST_TIMEOUT minutes
158
163
- 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 @@ -1462,7 +1462,7 @@ impl BurnchainConfig {
1462
1462
rpc_ssl : false ,
1463
1463
username : None ,
1464
1464
password : None ,
1465
- timeout : 300 ,
1465
+ timeout : 60 ,
1466
1466
magic_bytes : BLOCKSTACK_MAGIC_MAINNET . clone ( ) ,
1467
1467
local_mining_public_key : None ,
1468
1468
process_exit_at_block_height : None ,
@@ -2378,7 +2378,7 @@ impl Default for MinerConfig {
2378
2378
first_attempt_time_ms : 10 ,
2379
2379
subsequent_attempt_time_ms : 120_000 ,
2380
2380
microblock_attempt_time_ms : 30_000 ,
2381
- nakamoto_attempt_time_ms : 20_000 ,
2381
+ nakamoto_attempt_time_ms : 5_000 ,
2382
2382
probability_pick_no_estimate_tx : 25 ,
2383
2383
block_reward_recipient : None ,
2384
2384
segwit : false ,
You can’t perform that action at this time.
0 commit comments