Commit Graph

115 Commits

Author SHA1 Message Date
1e1c4a5fdb feat(validation): allow min difficulty blocks after testnet inactivity
Add logic to skip proof-of-work check for testnet when there's been 20 minutes of inactivity, allowing min difficulty blocks to be mined. This helps maintain chain progress during periods of low testnet activity.
2025-11-14 15:06:09 +01:00
efe1cbf18b fix(chainparams): update BIP34 height and hash for testnet
The BIP34 activation height was increased to 1700 and the hash was initialized to support upcoming testnet changes
2025-11-14 14:46:27 +01:00
96eef06c25 fix(pow): simplify testnet difficulty adjustment logic
Move the special 20-minute rule check before LWMA calculation for clarity and maintain the same behavior. Remove redundant else block and consolidate the logic for returning last non-special-min-difficulty block.
2025-11-14 10:35:02 +01:00
922f94321e fix(chainparams): update BIP34Height to 1250 for testnet
The BIP34 activation height was lowered to match the actual activation point on testnet, ensuring proper block validation behavior.
2025-11-14 10:27:23 +01:00
7e418123a9 build: update version to 1.5.0
Update client version from 1.4.1 to 1.5.0 across configuration files, source code, and documentation
2025-11-13 15:58:01 +01:00
553424d19d fix: update testnet chain params and restore getblocktemplate security check
Update testnet minimum chain work and default assume valid values to current state.
Restore security check in getblocktemplate RPC to prevent usage during initial block download.
2025-11-13 15:34:55 +01:00
ff87cc51c4 fix(pow): adjust testnet difficulty calculation rules
- Apply LWMA difficulty calculation for testnet from block 0 to match mainnet behavior
- Clarify testnet min-difficulty rule by using explicit 20 minute threshold instead of nPowTargetSpacing*2
2025-11-13 13:51:26 +01:00
5960d0d861 feat(rpc): allow getblocktemplate during initial block download for testnet
This temporary patch enables getblocktemplate RPC calls during initial block download for testnet purposes. The change will be reverted for mainnet.
2025-11-13 11:10:40 +01:00
2ee78184ef fix(chainparams): update testnet consensus parameters
- Change BIP34Height from 0 to 8192 to match mainnet activation
- Adjust nPowTargetTimespan from 1 day to 14 days for better difficulty stability
- Add nPowTargetSpacingV2 parameter for future compatibility
- Swap rule change activation threshold and miner confirmation window values
- Clarify fPowAllowMinDifficultyBlocks comment
2025-11-13 11:06:36 +01:00
946376406f refactor(clientversion): simplify version string formatting
Replace direct CLIENT_BUILD usage with FormatVersion to consistently display semantic versioning. This omits trailing ".0" and git suffix when build number is zero, making version strings cleaner and more predictable.
v1.4.1
2025-11-11 09:00:32 +01:00
a82c6c5fe0 build: bump version to 1.4.1
Update version number in configure.ac and documentation files to reflect new release version 1.4.1
2025-11-11 08:36:14 +01:00
NotRin7
6e1f7e7a61 Merge pull request #5 from palladium-coin/fix-sync-prob
fix(chainparams): allow node to sync from scratch
2025-11-07 16:22:30 +01:00
faefa9ba88 fix(chainparams): allow node to sync from scratch
The previous consensus parameters prevented the node from completing
initial sync without manually importing blocks. Updated chainparams so
a fresh node can fully synchronize on its own.
2025-11-07 13:11:07 +01:00
88fb8881e3 fix(chainparams): remove inactive seed node from mainnet list 2025-11-06 14:00:08 +01:00
6ccf7ead4b docs(docker-build): simplify and restructure docker build documentation
- Condensed lengthy documentation into more concise sections
- Removed redundant troubleshooting and implementation details
- Organized content by architecture with clear command/output sections
- Maintained all essential information while improving readability
2025-11-01 19:12:03 +01:00
dbaa10a848 build(docker): add armv7l cross-compilation support
- Add Dockerfile.linux-armv7l for ARMv7l cross-compilation environment
- Create build-linux-armv7l.sh script to automate the build process
- Update .dockerignore to exclude more build artifacts and temporary files
- Extend README.md with ARMv7l build instructions and target details
2025-11-01 15:05:29 +01:00
ffbaef8388 testnet update: rename testnet3 to testnet
Update all references to 'testnet3' to 'testnet' for consistency. This includes:
- Changing magic bytes in network messages
- Updating directory paths and configuration files
- Modifying documentation and test framework references
- Adjusting chain parameters and validation logic
2025-10-30 23:25:15 +01:00
e0a0becca9 feat(docker): add ARM64 cross-compilation support via Docker
Add Dockerfile and build script for Linux aarch64 cross-compilation targeting ARM64 devices like Raspberry Pi. Includes documentation updates explaining the build process and troubleshooting tips.

The changes enable building Palladium binaries for ARM64 architecture using cross-compilation in a Docker container, with output binaries placed in the build directory.
2025-10-29 16:23:21 +01:00
d738fe9f4f docs(readme): simplify build instructions by linking to platform-specific docs
The detailed build instructions were moved to separate platform-specific documents in the `/doc` folder to make the README more maintainable and easier to navigate. This change provides clearer guidance for users building on different operating systems.
2025-10-29 15:12:14 +01:00
6e29c7cd9d feat(docker): add Windows cross-compilation support via Docker
Add Dockerfile.windows and build-windows.sh for cross-compiling Windows executables
in a containerized environment. Includes documentation updates in README.md with
build instructions and troubleshooting tips for Windows builds.
2025-10-29 14:56:13 +01:00
9fc1062b9a docs: update README with new build instructions and repo URL
- Replace old releases page URL with new organization URL
- Add Docker build instructions as recommended method
- Expand manual build instructions with detailed steps and verification
- Include runtime dependencies for GUI
2025-10-29 12:11:54 +01:00
15f6512419 refactor(docker): restructure docker build system for linux-x86_64
- Replace generic Dockerfile with platform-specific Dockerfile.linux-x86_64
- Simplify .dockerignore to essential patterns
- Update build script with improved container build process and output handling
- Enhance README with detailed build process documentation
2025-10-29 12:04:27 +01:00
NotRin7
2a29186b3e Fix chainwork bug in chainparams.cpp 2025-10-28 14:03:59 +01:00
NotRin7
736c23753d Merge pull request #3 from palladium-coin/docker-build
build(docker): add docker build system for palladium core
2025-10-28 13:13:14 +01:00
a661b129af build(docker): add docker build system for palladium core
Add Dockerfile, build script, README and .dockerignore to create a reproducible build environment for Palladium Core binaries. The system builds x86_64 Linux binaries with all required dependencies and outputs them to the out/ directory.
2025-10-28 10:53:53 +01:00
NotRin7
707b60e075 Merge pull request #2 from NotRin7/master
enable testnet and regnet
2025-10-23 18:51:13 +02:00
NotRin7
8e6103221a Update chainparams.cpp 2025-10-23 18:49:41 +02:00
NotRin7
08f73f9769 testnet and regtest update 2025-10-23 16:56:36 +02:00
2bacfe0ba2 Update repository URL in README 2025-10-23 08:59:36 +02:00
NotRin7
bb2b37da7c Merge pull request #1 from NotRin7/master
v1.4.0
v1.4.0
2025-10-23 00:26:51 +02:00
NotRin7
14c8f5d143 Fix: corelib: Fix build failure by including <limits> 2025-10-23 00:17:50 +02:00
NotRin7
50bc73c823 fix 2025-10-22 23:03:39 +02:00
NotRin7
58b35ddb06 cleanup whitepaper and logos 2025-10-22 22:54:41 +02:00
NotRin7
796b749f33 new palladium.conf 2025-10-22 22:32:31 +02:00
NotRin7
cb108170df fixes, stability changes, new version (1.4.0) 2025-10-22 22:11:18 +02:00
NotRin7
720988a7b1 more easy compelation 2025-10-22 21:15:00 +02:00
NotRin7
8dd7895193 fix 2025-10-22 20:59:33 +02:00
NotRin7
a696a57d4d major update add auxpow und smal work changes 2025-10-22 19:54:48 +02:00
NotRin7
a8c5c345dd change at mining and work params 2025-10-22 17:28:38 +02:00
NotRin7
1b951c6852 add seeds and seeders 2025-10-22 16:22:29 +02:00
NotRin7
a8a9b86071 Update website 2025-10-18 16:09:49 +02:00
NotRin7
6939f6044f Merge pull request #3 from davide3011/master
docs: Comprehensive Documentation Updates
2025-10-14 16:07:45 +02:00
b67ebc279c docs: update whitepaper from PDF to LaTeX format
The whitepaper has been converted from PDF to LaTeX format to enable easier maintenance and updates. The content has been revised and expanded with additional technical details about Palladium's protocol specifications.
2025-10-13 13:42:13 +02:00
eed4f52f8f docs: update README installation instructions
Update download URL and clarify installation steps for better user experience
2025-10-12 17:37:05 +02:00
4847dbb564 docs: update README with comprehensive project documentation
- Restructured document with clear sections and improved formatting
- Added detailed configuration instructions with parameter explanations
- Included build instructions and contribution guidelines
- Updated security information and support resources
- Enhanced overall readability and completeness of documentation
2025-10-12 17:21:00 +02:00
NotRin7
5dedcd9abf Update README.md 2025-06-05 23:57:42 +02:00
NotRin7
de4b88edaa more checkpoints 2024-10-14 14:08:54 +02:00
NotRin7
3c63c72e7d Delete Minecraftpool.com 2024-10-09 19:10:28 +02:00
NotRin7
cb231c9855 Create Minecraftpool.com 2024-10-09 15:39:44 +02:00
NotRin7
87c2876b38 Update build-osx.md 2024-04-22 17:50:55 +02:00