diff --git a/contrib/debian/copyright b/contrib/debian/copyright index bfab7fc..ff9a61f 100644 --- a/contrib/debian/copyright +++ b/contrib/debian/copyright @@ -2,7 +2,7 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Palladium Upstream-Contact: Satoshi Nakamoto irc://#palladium@freenode.net -Source: https://github.com/NotRin7/palladium +Source: https://github.com/palladium-coin/palladiumcore Files: * Copyright: 2009-2020, Bitcoin Core Developers diff --git a/doc/README_doxygen.md b/doc/README_doxygen.md index f80b517..80fb904 100644 --- a/doc/README_doxygen.md +++ b/doc/README_doxygen.md @@ -8,7 +8,7 @@ with no central authority: managing transactions and issuing money are carried o The software is a community-driven open source project, released under the MIT license. -See https://github.com/NotRin7/palladium and https://palladium-coin.com/ for further information about the project. +See https://github.com/palladium-coin/palladiumcore and https://palladium-coin.com/ for further information about the project. \section Navigation Use Modules, Namespaces, Classes, or Files at the top of the page to start navigating the code. diff --git a/doc/build-osx.md b/doc/build-osx.md index c4b596f..3ad44b2 100644 --- a/doc/build-osx.md +++ b/doc/build-osx.md @@ -47,7 +47,7 @@ from the root of the repository. 1. Clone the Palladium Core source code: ```shell - git clone https://github.com/NotRin7/palladium.git + git clone https://github.com/palladium-coin/palladiumcore.git cd palladium ``` diff --git a/doc/man/palladium-cli.1 b/doc/man/palladium-cli.1 index 84f46d1..53cf7dd 100644 --- a/doc/man/palladium-cli.1 +++ b/doc/man/palladium-cli.1 @@ -124,4 +124,4 @@ Copyright (C) 2024 The Palladium Core developers Please contribute if you find Palladium Core useful. Visit for further information about the software. -The source code is available from . +The source code is available from . diff --git a/doc/man/palladium-qt.1 b/doc/man/palladium-qt.1 index 46f8ced..c124ff6 100644 --- a/doc/man/palladium-qt.1 +++ b/doc/man/palladium-qt.1 @@ -682,7 +682,7 @@ Copyright (C) 2024 The Palladium Core developers Please contribute if you find Palladium Core useful. Visit for further information about the software. -The source code is available from . +The source code is available from . This is experimental software. Distributed under the MIT software license, see the accompanying file COPYING diff --git a/doc/man/palladium-tx.1 b/doc/man/palladium-tx.1 index 2a0a30a..344c869 100644 --- a/doc/man/palladium-tx.1 +++ b/doc/man/palladium-tx.1 @@ -117,4 +117,4 @@ Copyright (C) 2024 The Palladium Core developers Please contribute if you find Palladium Core useful. Visit for further information about the software. -The source code is available from . +The source code is available from . diff --git a/doc/man/palladium-wallet.1 b/doc/man/palladium-wallet.1 index ac66a3c..22bc8f8 100644 --- a/doc/man/palladium-wallet.1 +++ b/doc/man/palladium-wallet.1 @@ -62,4 +62,4 @@ Copyright (C) 2024 The Palladium Core developers Please contribute if you find Palladium Core useful. Visit for further information about the software. -The source code is available from . +The source code is available from . diff --git a/doc/man/palladiumd.1 b/doc/man/palladiumd.1 index b225a0f..78e311f 100644 --- a/doc/man/palladiumd.1 +++ b/doc/man/palladiumd.1 @@ -660,7 +660,7 @@ Copyright (C) 2024 The Palladium Core developers Please contribute if you find Palladium Core useful. Visit for further information about the software. -The source code is available from . +The source code is available from . This is experimental software. Distributed under the MIT software license, see the accompanying file COPYING diff --git a/doc/release-notes.md b/doc/release-notes.md index 2d720c1..c322059 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -10,7 +10,7 @@ improvements, as well as updated translations. Please report bugs using the issue tracker at GitHub: - + To receive security and update notifications, please subscribe to: diff --git a/docker-build/build-linux-aarch64.sh b/docker-build/build-linux-aarch64.sh old mode 100644 new mode 100755 diff --git a/docker-build/build-linux-armv7l.sh b/docker-build/build-linux-armv7l.sh old mode 100644 new mode 100755 diff --git a/docker-build/build-linux-x86_64.sh b/docker-build/build-linux-x86_64.sh old mode 100644 new mode 100755 diff --git a/docker-build/build-windows.sh b/docker-build/build-windows.sh old mode 100644 new mode 100755 diff --git a/src/init.cpp b/src/init.cpp index 6dba52b..5d75a20 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -579,7 +579,7 @@ void SetupServerArgs() std::string LicenseInfo() { - const std::string URL_SOURCE_CODE = ""; + const std::string URL_SOURCE_CODE = ""; return CopyrightHolders(strprintf(_("Copyright (C) %i-%i").translated, 2024, COPYRIGHT_YEAR) + " ") + "\n" + "Copyright (C) 2009-2024 The Bitcoin Core developers" + "\n" + diff --git a/src/qt/modaloverlay.cpp b/src/qt/modaloverlay.cpp index 20d0a21..cf728b9 100644 --- a/src/qt/modaloverlay.cpp +++ b/src/qt/modaloverlay.cpp @@ -132,9 +132,9 @@ void ModalOverlay::tipUpdate(int count, const QDateTime& blockDate, double nVeri // not syncing return; - // estimate the number of headers left based on nPowTargetSpacing + // estimate the number of headers left based on nPowTargetSpacingV2 // and check if the gui is not aware of the best header (happens rarely) - int estimateNumHeadersLeft = bestHeaderDate.secsTo(currentDate) / Params().GetConsensus().nPowTargetSpacing; + int estimateNumHeadersLeft = bestHeaderDate.secsTo(currentDate) / Params().GetConsensus().nPowTargetSpacingV2; bool hasBestHeader = bestHeaderHeight >= count; // show remaining number of blocks @@ -147,7 +147,7 @@ void ModalOverlay::tipUpdate(int count, const QDateTime& blockDate, double nVeri } void ModalOverlay::UpdateHeaderSyncLabel() { - int est_headers_left = bestHeaderDate.secsTo(QDateTime::currentDateTime()) / Params().GetConsensus().nPowTargetSpacing; + int est_headers_left = bestHeaderDate.secsTo(QDateTime::currentDateTime()) / Params().GetConsensus().nPowTargetSpacingV2; ui->numberOfBlocksLeft->setText(tr("Unknown. Syncing Headers (%1, %2%)...").arg(bestHeaderHeight).arg(QString::number(100.0 / (bestHeaderHeight + est_headers_left) * bestHeaderHeight, 'f', 1))); } diff --git a/src/qt/palladiumgui.cpp b/src/qt/palladiumgui.cpp index ea09001..f8f5b59 100644 --- a/src/qt/palladiumgui.cpp +++ b/src/qt/palladiumgui.cpp @@ -899,7 +899,7 @@ void PalladiumGUI::updateHeadersSyncProgressLabel() { int64_t headersTipTime = clientModel->getHeaderTipTime(); int headersTipHeight = clientModel->getHeaderTipHeight(); - int estHeadersLeft = (GetTime() - headersTipTime) / Params().GetConsensus().nPowTargetSpacing; + int estHeadersLeft = (GetTime() - headersTipTime) / Params().GetConsensus().nPowTargetSpacingV2; if (estHeadersLeft > HEADER_HEIGHT_DELTA_SYNC) progressBarLabel->setText(tr("Syncing Headers (%1%)...").arg(QString::number(100.0 / (headersTipHeight+estHeadersLeft)*headersTipHeight, 'f', 1))); } diff --git a/src/qt/sendcoinsdialog.cpp b/src/qt/sendcoinsdialog.cpp index 593b824..1e26f1f 100644 --- a/src/qt/sendcoinsdialog.cpp +++ b/src/qt/sendcoinsdialog.cpp @@ -167,7 +167,7 @@ void SendCoinsDialog::setModel(WalletModel *_model) // fee section for (const int n : confTargets) { - ui->confTargetSelector->addItem(tr("%1 (%2 blocks)").arg(GUIUtil::formatNiceTimeOffset(n*Params().GetConsensus().nPowTargetSpacing)).arg(n)); + ui->confTargetSelector->addItem(tr("%1 (%2 blocks)").arg(GUIUtil::formatNiceTimeOffset(n*Params().GetConsensus().nPowTargetSpacingV2)).arg(n)); } connect(ui->confTargetSelector, static_cast(&QComboBox::currentIndexChanged), this, &SendCoinsDialog::updateSmartFeeLabel); connect(ui->confTargetSelector, static_cast(&QComboBox::currentIndexChanged), this, &SendCoinsDialog::coinControlUpdateLabels);