From 13d1e776a50d97058468e6b7a588aa4d49c120d0 Mon Sep 17 00:00:00 2001 From: lateminer <9951982+lateminer@users.noreply.github.com> Date: Tue, 14 May 2024 23:09:07 +0200 Subject: [PATCH] trivial: Keep "bitcoin" in code comments It partially reverts https://github.com/CoinBlack/blackcoin-more/commit/1fdcb5eaa09d51e2d0ee73afb98a773c54a7ed41 --- src/qt/bitcoinamountfield.h | 2 +- src/qt/splashscreen.cpp | 2 +- src/qt/transactionrecord.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/qt/bitcoinamountfield.h b/src/qt/bitcoinamountfield.h index e633833de5..f710915a49 100644 --- a/src/qt/bitcoinamountfield.h +++ b/src/qt/bitcoinamountfield.h @@ -16,7 +16,7 @@ QT_BEGIN_NAMESPACE class QValueComboBox; QT_END_NAMESPACE -/** Widget for entering blackcoin amounts. +/** Widget for entering bitcoin amounts. */ class BitcoinAmountField: public QWidget { diff --git a/src/qt/splashscreen.cpp b/src/qt/splashscreen.cpp index 7946ad7875..04d67044f2 100644 --- a/src/qt/splashscreen.cpp +++ b/src/qt/splashscreen.cpp @@ -70,7 +70,7 @@ SplashScreen::SplashScreen(const NetworkStyle* networkStyle) QRect rGradient(QPoint(0,0), splashSize); pixPaint.fillRect(rGradient, gradient); - // draw the blackcoin icon, expected size of PNG: 1024x1024 + // draw the bitcoin icon, expected size of PNG: 1024x1024 QRect rectIcon(QPoint(-130,-102), QSize(430,430)); const QSize requiredSize(1024,1024); diff --git a/src/qt/transactionrecord.cpp b/src/qt/transactionrecord.cpp index af83f766e9..a9210129e0 100644 --- a/src/qt/transactionrecord.cpp +++ b/src/qt/transactionrecord.cpp @@ -66,7 +66,7 @@ QList TransactionRecord::decomposeTransaction(const interface if (fAllFromMe) { // Change is only really possible if we're the sender - // Otherwise, someone just sent blackcoins to a change address, which should be shown + // Otherwise, someone just sent bitcoins to a change address, which should be shown if (wtx.txout_is_change[i]) { continue; } @@ -81,7 +81,7 @@ QList TransactionRecord::decomposeTransaction(const interface if (!std::get_if(&wtx.txout_address[i])) { - // Sent to Blackcoin Address + // Sent to Bitcoin Address sub.type = TransactionRecord::SendToAddress; sub.address = EncodeDestination(wtx.txout_address[i]); }