Skip to content

Commit

Permalink
trivial: Keep "bitcoin" in code comments
Browse files Browse the repository at this point in the history
It partially reverts CoinBlack@1fdcb5e
  • Loading branch information
lateminer committed May 14, 2024
1 parent b91cf4b commit 13d1e77
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/qt/bitcoinamountfield.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion src/qt/splashscreen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions src/qt/transactionrecord.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ QList<TransactionRecord> 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;
}
Expand All @@ -81,7 +81,7 @@ QList<TransactionRecord> TransactionRecord::decomposeTransaction(const interface

if (!std::get_if<CNoDestination>(&wtx.txout_address[i]))
{
// Sent to Blackcoin Address
// Sent to Bitcoin Address
sub.type = TransactionRecord::SendToAddress;
sub.address = EncodeDestination(wtx.txout_address[i]);
}
Expand Down

0 comments on commit 13d1e77

Please sign in to comment.