Update coinbase maturity to 120 blocks for Palladium

The coinbase maturity period has been increased from 100 to 120 blocks to match Palladium's consensus rules. This change ensures proper validation of coinbase transactions on the Palladium network.
This commit is contained in:
2025-11-23 22:19:15 +01:00
parent dacb5f9004
commit f4edb3e825
2 changed files with 2 additions and 1 deletions

View File

@@ -39,6 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Network connection logic to support Palladium blockchain
- Transaction validation rules for Palladium consensus
- Fee estimation adapted to Palladium network conditions
- Coinbase maturity increased to 120 blocks (from Bitcoin's 100)
### Fixed
- **Android (QML) GUI critical fixes**

View File

@@ -42,7 +42,7 @@ if TYPE_CHECKING:
################################## transactions
COINBASE_MATURITY = 100
COINBASE_MATURITY = 120 # Palladium coinbase maturity (blocks)
COIN = 100000000
TOTAL_COIN_SUPPLY_LIMIT_IN_BTC = 21000000