Fix: Correct wallet confirmation time and update repository URLs

This commit is contained in:
NotRin7
2025-11-17 17:43:13 +01:00
parent 72ee7e5872
commit c046c329a4
17 changed files with 15 additions and 15 deletions

View File

@@ -2,7 +2,7 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Palladium
Upstream-Contact: Satoshi Nakamoto <satoshin@gmx.com>
irc://#palladium@freenode.net
Source: https://github.com/NotRin7/palladium
Source: https://github.com/palladium-coin/palladiumcore
Files: *
Copyright: 2009-2020, Bitcoin Core Developers

View File

@@ -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 <a href="modules.html"><code>Modules</code></a>, <a href="namespaces.html"><code>Namespaces</code></a>, <a href="classes.html"><code>Classes</code></a>, or <a href="files.html"><code>Files</code></a> at the top of the page to start navigating the code.

View File

@@ -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
```

View File

@@ -124,4 +124,4 @@ Copyright (C) 2024 The Palladium Core developers
Please contribute if you find Palladium Core useful. Visit
<https://palladium-coin.com/> for further information about the software.
The source code is available from <https://github.com/NotRin7/palladium>.
The source code is available from <https://github.com/palladium-coin/palladiumcore>.

View File

@@ -682,7 +682,7 @@ Copyright (C) 2024 The Palladium Core developers
Please contribute if you find Palladium Core useful. Visit
<https://palladium-coin.com/> for further information about the software.
The source code is available from <https://github.com/NotRin7/palladium>.
The source code is available from <https://github.com/palladium-coin/palladiumcore>.
This is experimental software.
Distributed under the MIT software license, see the accompanying file COPYING

View File

@@ -117,4 +117,4 @@ Copyright (C) 2024 The Palladium Core developers
Please contribute if you find Palladium Core useful. Visit
<https://palladium-coin.com/> for further information about the software.
The source code is available from <https://github.com/NotRin7/palladium>.
The source code is available from <https://github.com/palladium-coin/palladiumcore>.

View File

@@ -62,4 +62,4 @@ Copyright (C) 2024 The Palladium Core developers
Please contribute if you find Palladium Core useful. Visit
<https://palladium-coin.com/> for further information about the software.
The source code is available from <https://github.com/NotRin7/palladium>.
The source code is available from <https://github.com/palladium-coin/palladiumcore>.

View File

@@ -660,7 +660,7 @@ Copyright (C) 2024 The Palladium Core developers
Please contribute if you find Palladium Core useful. Visit
<https://palladium-coin.com/> for further information about the software.
The source code is available from <https://github.com/NotRin7/palladium>.
The source code is available from <https://github.com/palladium-coin/palladiumcore>.
This is experimental software.
Distributed under the MIT software license, see the accompanying file COPYING

View File

@@ -10,7 +10,7 @@ improvements, as well as updated translations.
Please report bugs using the issue tracker at GitHub:
<https://github.com/NotRin7/palladium/issues>
<https://github.com/palladium-coin/palladiumcore/issues>
To receive security and update notifications, please subscribe to:

0
docker-build/build-linux-aarch64.sh Normal file → Executable file
View File

0
docker-build/build-linux-armv7l.sh Normal file → Executable file
View File

0
docker-build/build-linux-x86_64.sh Normal file → Executable file
View File

0
docker-build/build-windows.sh Normal file → Executable file
View File

View File

@@ -579,7 +579,7 @@ void SetupServerArgs()
std::string LicenseInfo()
{
const std::string URL_SOURCE_CODE = "<https://github.com/NotRin7/palladium>";
const std::string URL_SOURCE_CODE = "<https://github.com/palladium-coin/palladiumcore>";
return CopyrightHolders(strprintf(_("Copyright (C) %i-%i").translated, 2024, COPYRIGHT_YEAR) + " ") + "\n" +
"Copyright (C) 2009-2024 The Bitcoin Core developers" + "\n" +

View File

@@ -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)));
}

View File

@@ -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)));
}

View File

@@ -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<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this, &SendCoinsDialog::updateSmartFeeLabel);
connect(ui->confTargetSelector, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this, &SendCoinsDialog::coinControlUpdateLabels);