From f4edb3e82533e54b4b76580619f727123deebc5d Mon Sep 17 00:00:00 2001 From: Davide Grilli Date: Sun, 23 Nov 2025 22:19:15 +0100 Subject: [PATCH] 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. --- CHANGELOG.md | 1 + electrum/bitcoin.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64714e010..01fca0f60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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** diff --git a/electrum/bitcoin.py b/electrum/bitcoin.py index 81b640cd2..e42d7772f 100644 --- a/electrum/bitcoin.py +++ b/electrum/bitcoin.py @@ -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