Skip to content

Commit c1a2c2e

Browse files
authored
Merge pull request #3603 from stacks-network/fix/always-use-affirmation-maps
fix: always_use_affirmation_maps defaults to false
2 parents a0c1f9e + 9f7a650 commit c1a2c2e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ and this project adheres to the versioning scheme outlined in the [README.md](RE
1010
### Fixed
1111

1212
- Handle the case where a bitcoin node returns zero headers (#3588)
13+
- The default value for `always_use_affirmation_maps` is now set to `false`,
14+
instead of `true`. This was preventing testnet nodes from reaching the chain
15+
tip with the default configuration.
1316

1417
## [2.1]
1518

testnet/stacks-node/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1729,7 +1729,7 @@ impl NodeConfig {
17291729
marf_defer_hashing: true,
17301730
pox_sync_sample_secs: 30,
17311731
use_test_genesis_chainstate: None,
1732-
always_use_affirmation_maps: true,
1732+
always_use_affirmation_maps: false,
17331733
require_affirmed_anchor_blocks: true,
17341734
fault_injection_hide_blocks: false,
17351735
}

0 commit comments

Comments
 (0)