Skip to content

Commit

Permalink
Wallet/File Renames (#4)
Browse files Browse the repository at this point in the history
* fork bitcoin to safecash

* fork bitcoin to safecash

* fork bitcoin to safecash

* fork bitcoin to safecash

* fork bitcoin to safecash

* fork bitcoin to safecash

* fork bitcoin to safecash

* fork bitcoin to safecash

* fork bitcoin to safecash

* fork bitcoin to safecash

* fork bitcoin to safecash

* fork bitcoin to safecash

* fork bitcoin to safecash

* fork bitcoin to safecash

* fork bitcoin to safecash

* fork bitcoin to safecash

* update

* cleaning up

* cleaning up

* cleaning up

* cleaning up

* update for build error

* fork bitcoin to safecash

* fork bitcoin to safecash

* pull clear button for test

* edit for clear button test

* testing for receive clear

* reverting

* reverting

* re-reverting

* unit to show amounts in edit

* fork stuffs

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* constants edit

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin core to safecash official

* bitcoin core to safecash official

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* Update db.cpp

* bitcoin to safecash

* bitcoin to safecash

* Update merkle.cpp

* Update blockchain.cpp

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash

* bitcoin to safecash
  • Loading branch information
ssowellsvt committed Jul 3, 2018
1 parent 041ec64 commit 21b7850
Show file tree
Hide file tree
Showing 75 changed files with 173 additions and 173 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ SafeCa$h Official
* [Website](https://safecash.io/)
* [Forums](https://safecash.io/forum/)
* [Discord](https://discord.gg/8hSjExc)
* [Twitter](https://mobile.twitter.com/SafeCash_IO)
* [Twitter](https://twitter.com/SafeCash_IO)


## Development Process
Expand Down
2 changes: 1 addition & 1 deletion src/arith_uint256.h
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ class arith_uint256 : public base_uint<256> {
* Thus 0x1234560000 is compact (0x05123456)
* and 0xc0de000000 is compact (0x0600c0de)
*
* Bitcoin only uses this "compact" format for encoding difficulty
* SafeCash only uses this "compact" format for encoding difficulty
* targets, which are unsigned 256bit quantities. Thus, all the
* complexities of the sign bit and using base 256 are probably an
* implementation accident.
Expand Down
2 changes: 1 addition & 1 deletion src/base58.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ CTxDestination DecodeDestination(const std::string& str, const CChainParams& par
std::vector<unsigned char> data;
uint160 hash;
if (DecodeBase58Check(str, data)) {
// base58-encoded Bitcoin addresses.
// base58-encoded SafeCash addresses.
// Public-key-hash-addresses have version 0 (or 111 testnet).
// The data vector contains RIPEMD160(SHA256(pubkey)), where pubkey is the serialized public key.
const std::vector<unsigned char>& pubkey_prefix = params.Base58Prefix(CChainParams::PUBKEY_ADDRESS);
Expand Down
2 changes: 1 addition & 1 deletion src/chainparamsseeds.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef BITCOIN_CHAINPARAMSSEEDS_H
#define BITCOIN_CHAINPARAMSSEEDS_H
/**
* List of fixed seed nodes for the bitcoin network
* List of fixed seed nodes for the SafeCash network
* AUTOGENERATED by contrib/seeds/generate-seeds.py
*
* Each line contains a 16-byte IPv6 address and a port.
Expand Down
2 changes: 1 addition & 1 deletion src/coins.h
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ class CCoinsViewCache : public CCoinsViewBacked
size_t DynamicMemoryUsage() const;

/**
* Amount of bitcoins coming in to a transaction
* Amount of SafeCash coming in to a transaction
* Note that lightweight clients may not know anything besides the hash of previous transactions,
* so may not be able to calculate this.
*
Expand Down
2 changes: 1 addition & 1 deletion src/consensus/merkle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ static void MerkleComputation(const std::vector<uint256>& leaves, uint256* proot
bool matchh = matchlevel == level;
while (count != (((uint32_t)1) << level)) {
// If we reach this point, h is an inner value that is not the top.
// We combine it with itself (Bitcoin's special rule for odd levels in
// We combine it with itself (SafeCash's special rule for odd levels in
// the tree) to produce a higher level one.
if (pbranch && matchh) {
pbranch->push_back(h);
Expand Down
2 changes: 1 addition & 1 deletion src/dbwrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class CBitcoinLevelDBLogger : public leveldb::Logger {
if (p < limit) {
va_list backup_ap;
va_copy(backup_ap, ap);
// Do not use vsnprintf elsewhere in bitcoin source code, see above.
// Do not use vsnprintf elsewhere in SafeCash source code, see above.
p += vsnprintf(p, limit - p, format, backup_ap);
va_end(backup_ap);
}
Expand Down
4 changes: 2 additions & 2 deletions src/hash.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

typedef uint256 ChainCode;

/** A hasher class for Bitcoin's 256-bit hash (double SHA-256). */
/** A hasher class for SafeCash's 256-bit hash (double SHA-256). */
class CHash256 {
private:
CSHA256 sha;
Expand All @@ -41,7 +41,7 @@ class CHash256 {
}
};

/** A hasher class for Bitcoin's 160-bit hash (SHA-256 + RIPEMD-160). */
/** A hasher class for SafeCash's 160-bit hash (SHA-256 + RIPEMD-160). */
class CHash160 {
private:
CSHA256 sha;
Expand Down
4 changes: 2 additions & 2 deletions src/httpserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ static void http_reject_request_cb(struct evhttp_request* req, void*)
/** Event dispatcher thread */
static bool ThreadHTTP(struct event_base* base, struct evhttp* http)
{
RenameThread("bitcoin-http");
RenameThread("safecash-http");
LogPrint(BCLog::HTTP, "Entering http event loop\n");
event_base_dispatch(base);
// Event loop will be interrupted by InterruptHTTPServer()
Expand Down Expand Up @@ -329,7 +329,7 @@ static bool HTTPBindAddresses(struct evhttp* http)
/** Simple wrapper to set thread name and run work queue */
static void HTTPWorkQueueRun(WorkQueue<HTTPClosure>* queue)
{
RenameThread("bitcoin-httpworker");
RenameThread("safecash-httpworker");
queue->Run();
}

Expand Down
16 changes: 8 additions & 8 deletions src/init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ void Shutdown()
/// for example if the data directory was found to be locked.
/// Be sure that anything that writes files or flushes caches only does this if the respective
/// module was initialized.
RenameThread("bitcoin-shutoff");
RenameThread("safecash-shutoff");
mempool.AddTransactionsUpdated(1);

StopHTTPRPC();
Expand Down Expand Up @@ -517,8 +517,8 @@ std::string HelpMessage(HelpMessageMode mode)

std::string LicenseInfo()
{
const std::string URL_SOURCE_CODE = "<https://github.com/bitcoin/bitcoin>";
const std::string URL_WEBSITE = "<https://bitcoincore.org>";
const std::string URL_SOURCE_CODE = "<https://github.com/safecashofficial/safecash>";
const std::string URL_WEBSITE = "<https://safecash.io/>";

return CopyrightHolders(strprintf(_("Copyright (C) %i-%i"), 2009, COPYRIGHT_YEAR) + " ") + "\n" +
"\n" +
Expand Down Expand Up @@ -622,7 +622,7 @@ void CleanupBlockRevFiles()
void ThreadImport(std::vector<fs::path> vImportFiles)
{
const CChainParams& chainparams = Params();
RenameThread("bitcoin-loadblk");
RenameThread("safecash-loadblk");

{
CImportingNow imp;
Expand Down Expand Up @@ -694,7 +694,7 @@ void ThreadImport(std::vector<fs::path> vImportFiles)
}

/** Sanity checks
* Ensure that Bitcoin is running in a usable environment with all
* Ensure that SafeCash is running in a usable environment with all
* necessary library support.
*/
bool InitSanityCheck(void)
Expand Down Expand Up @@ -1159,7 +1159,7 @@ bool AppInitParameterInteraction()

static bool LockDataDirectory(bool probeOnly)
{
// Make sure only a single Bitcoin process is using the data directory.
// Make sure only a single SafeCash process is using the data directory.
fs::path datadir = GetDataDir();
if (!LockDirectory(datadir, ".lock", probeOnly)) {
return InitError(strprintf(_("Cannot obtain a lock on data directory %s. %s is probably already running."), datadir.string(), _(PACKAGE_NAME)));
Expand Down Expand Up @@ -1234,9 +1234,9 @@ bool AppInitMain()
// Warn about relative -datadir path.
if (gArgs.IsArgSet("-datadir") && !fs::path(gArgs.GetArg("-datadir", "")).is_absolute()) {
LogPrintf("Warning: relative datadir option '%s' specified, which will be interpreted relative to the "
"current working directory '%s'. This is fragile, because if bitcoin is started in the future "
"current working directory '%s'. This is fragile, because if SafeCash Official is started in the future "
"from a different location, it will be unable to locate the current data files. There could "
"also be data loss if bitcoin is started while in a temporary directory.\n",
"also be data loss if SafeCash Official is started while in a temporary directory.\n",
gArgs.GetArg("-datadir", ""), fs::current_path().string());
}

Expand Down
6 changes: 3 additions & 3 deletions src/init.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ void InitLogging();
//!Parameter interaction: change current parameters depending on various rules
void InitParameterInteraction();

/** Initialize bitcoin core: Basic context setup.
/** Initialize SafeCash Official: Basic context setup.
* @note This can be done before daemonization. Do not call Shutdown() if this function fails.
* @pre Parameters should be parsed and config file should be read.
*/
Expand All @@ -44,13 +44,13 @@ bool AppInitParameterInteraction();
*/
bool AppInitSanityChecks();
/**
* Lock bitcoin core data directory.
* Lock SafeCash core data directory.
* @note This should only be done after daemonization. Do not call Shutdown() if this function fails.
* @pre Parameters should be parsed and config file should be read, AppInitSanityChecks should have been called.
*/
bool AppInitLockDataDirectory();
/**
* Bitcoin core main initialization.
* SafeCash Official main initialization.
* @note This should only be done after daemonization. Call Shutdown() if this function fails.
* @pre Parameters should be parsed and config file should be read, AppInitLockDataDirectory should have been called.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/key.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ bool CKey::VerifyPubKey(const CPubKey& pubkey) const {
return false;
}
unsigned char rnd[8];
std::string str = "Bitcoin key verification\n";
std::string str = "SafeCash key verification\n";
GetRandBytes(rnd, sizeof(rnd));
uint256 hash;
CHash256().Write((unsigned char*)str.data(), str.size()).Write(rnd, sizeof(rnd)).Finalize(hash.begin());
Expand Down
4 changes: 2 additions & 2 deletions src/net.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ void CNode::copyStats(CNodeStats &stats)
nPingUsecWait = GetTimeMicros() - nPingUsecStart;
}

// Raw ping time is in microseconds, but show it to user as whole seconds (Bitcoin users should be well used to small numbers with many decimal places by now :)
// Raw ping time is in microseconds, but show it to user as whole seconds (SafeCash users should be well used to small numbers with many decimal places by now :)
stats.dPingTime = (((double)nPingUsecTime) / 1e6);
stats.dMinPing = (((double)nMinPingUsecTime) / 1e6);
stats.dPingWait = (((double)nPingUsecWait) / 1e6);
Expand Down Expand Up @@ -1507,7 +1507,7 @@ void ThreadMapPort()
}
}

std::string strDesc = "Bitcoin " + FormatFullVersion();
std::string strDesc = "SafeCash " + FormatFullVersion();

try {
while (true) {
Expand Down
2 changes: 1 addition & 1 deletion src/net_processing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include <utilstrencodings.h>

#if defined(NDEBUG)
# error "Bitcoin cannot be compiled without assertions."
# error "SafeCash Official cannot be compiled without assertions."
#endif

std::atomic<int64_t> nTimeBestReceived(0); // Used only to inform the wallet of when we last received a block
Expand Down
2 changes: 1 addition & 1 deletion src/pubkey.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ secp256k1_context* secp256k1_context_verify = nullptr;
*
* Supported violations include negative integers, excessive padding, garbage
* at the end, and overly long length descriptors. This is safe to use in
* Bitcoin because since the activation of BIP66, signatures are verified to be
* SafeCash because since the activation of BIP66, signatures are verified to be
* strict DER before being passed to this module, and we know it supports all
* violations present in the blockchain before that point.
*/
Expand Down
8 changes: 4 additions & 4 deletions src/qt/Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.PHONY: FORCE
all: FORCE
$(MAKE) -C .. bitcoin_qt test_bitcoin_qt
$(MAKE) -C .. safecash-qt test_safecash-qt
clean: FORCE
$(MAKE) -C .. bitcoin_qt_clean test_bitcoin_qt_clean
$(MAKE) -C .. safecash-qt_clean test_safecash-qt_clean
check: FORCE
$(MAKE) -C .. test_bitcoin_qt_check
$(MAKE) -C .. test_safecash-qt_check
safecash-qt safecash-qt.exe: FORCE
$(MAKE) -C .. bitcoin_qt
$(MAKE) -C .. safecash-qt
4 changes: 2 additions & 2 deletions src/qt/addressbookpage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ AddressBookPage::AddressBookPage(const PlatformStyle *platformStyle, Mode _mode,
switch(tab)
{
case SendingTab:
ui->labelExplanation->setText(tr("These are your Bitcoin addresses for sending payments. Always check the amount and the receiving address before sending coins."));
ui->labelExplanation->setText(tr("These are your SafeCash addresses for sending payments. Always check the amount and the receiving address before sending coins."));
ui->deleteAddress->setVisible(true);
break;
case ReceivingTab:
ui->labelExplanation->setText(tr("These are your Bitcoin addresses for receiving payments. It is recommended to use a new receiving address for each transaction."));
ui->labelExplanation->setText(tr("These are your SafeCash addresses for receiving payments. It is recommended to use a new receiving address for each transaction."));
ui->deleteAddress->setVisible(false);
break;
}
Expand Down
2 changes: 1 addition & 1 deletion src/qt/addresstablemodel.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class AddressTableModel : public QAbstractTableModel

enum ColumnIndex {
Label = 0, /**< User specified label */
Address = 1 /**< Bitcoin address */
Address = 1 /**< SafeCash address */
};

enum RoleIndex {
Expand Down
4 changes: 2 additions & 2 deletions src/qt/askpassphrasedialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ void AskPassphraseDialog::accept()
break;
}
QMessageBox::StandardButton retval = QMessageBox::question(this, tr("Confirm wallet encryption"),
tr("Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR BITCOINS</b>!") + "<br><br>" + tr("Are you sure you wish to encrypt your wallet?"),
tr("Warning: If you encrypt your wallet and lose your passphrase, you will <b>LOSE ALL OF YOUR SAFECASH</b>!") + "<br><br>" + tr("Are you sure you wish to encrypt your wallet?"),
QMessageBox::Yes|QMessageBox::Cancel,
QMessageBox::Cancel);
if(retval == QMessageBox::Yes)
Expand All @@ -125,7 +125,7 @@ void AskPassphraseDialog::accept()
"<qt>" +
tr("%1 will close now to finish the encryption process. "
"Remember that encrypting your wallet cannot fully protect "
"your bitcoins from being stolen by malware infecting your computer.").arg(tr(PACKAGE_NAME)) +
"your coins from being stolen by malware infecting your computer.").arg(tr(PACKAGE_NAME)) +
"<br><br><b>" +
tr("IMPORTANT: Any previous backups you have made of your wallet file "
"should be replaced with the newly generated, encrypted wallet file. "
Expand Down
2 changes: 1 addition & 1 deletion src/qt/bitcoin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ void BitcoinApplication::shutdownResult()

void BitcoinApplication::handleRunawayException(const QString &message)
{
QMessageBox::critical(0, "Runaway exception", BitcoinGUI::tr("A fatal error occurred. Bitcoin can no longer continue safely and will quit.") + QString("\n\n") + message);
QMessageBox::critical(0, "Runaway exception", BitcoinGUI::tr("A fatal error occurred. SafeCash Official can no longer continue safely and will quit.") + QString("\n\n") + message);
::exit(EXIT_FAILURE);
}

Expand Down
2 changes: 1 addition & 1 deletion src/qt/bitcoinaddressvalidator.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class BitcoinAddressEntryValidator : public QValidator
State validate(QString &input, int &pos) const;
};

/** Bitcoin address widget validator, checks for a valid bitcoin address.
/** SafeCash address widget validator, checks for a valid SafeCash address.
*/
class BitcoinAddressCheckValidator : public QValidator
{
Expand Down
2 changes: 1 addition & 1 deletion src/qt/bitcoinamountfield.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ QT_BEGIN_NAMESPACE
class QValueComboBox;
QT_END_NAMESPACE

/** Widget for entering bitcoin amounts.
/** Widget for entering SafeCash amounts.
*/
class BitcoinAmountField: public QWidget
{
Expand Down
16 changes: 8 additions & 8 deletions src/qt/bitcoingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ void BitcoinGUI::createActions()
tabGroup->addAction(overviewAction);

sendCoinsAction = new QAction(QIcon(":/icons/send"), tr("&Send"), this);
sendCoinsAction->setStatusTip(tr("Send coins to a Bitcoin address"));
sendCoinsAction->setStatusTip(tr("Send coins to a SafeCash address"));
sendCoinsAction->setToolTip(sendCoinsAction->statusTip());
sendCoinsAction->setCheckable(true);
sendCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_2));
Expand All @@ -301,7 +301,7 @@ void BitcoinGUI::createActions()
sendCoinsMenuAction->setToolTip(sendCoinsMenuAction->statusTip());

receiveCoinsAction = new QAction(QIcon(":/icons/receiving_addresses"), tr("&Receive"), this);
receiveCoinsAction->setStatusTip(tr("Request payments (generates QR codes and bitcoin: URIs)"));
receiveCoinsAction->setStatusTip(tr("Request payments (generates QR codes and safecash: URIs)"));
receiveCoinsAction->setToolTip(receiveCoinsAction->statusTip());
receiveCoinsAction->setCheckable(true);
receiveCoinsAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_3));
Expand Down Expand Up @@ -361,9 +361,9 @@ void BitcoinGUI::createActions()
changePassphraseAction = new QAction(platformStyle->TextColorIcon(":/icons/key"), tr("&Change Passphrase..."), this);
changePassphraseAction->setStatusTip(tr("Change the passphrase used for wallet encryption"));
signMessageAction = new QAction(platformStyle->TextColorIcon(":/icons/edit"), tr("Sign &message..."), this);
signMessageAction->setStatusTip(tr("Sign messages with your Bitcoin addresses to prove you own them"));
signMessageAction->setStatusTip(tr("Sign messages with your SafeCash addresses to prove you own them"));
verifyMessageAction = new QAction(platformStyle->TextColorIcon(":/icons/verify"), tr("&Verify message..."), this);
verifyMessageAction->setStatusTip(tr("Verify messages to ensure they were signed with specified Bitcoin addresses"));
verifyMessageAction->setStatusTip(tr("Verify messages to ensure they were signed with specified SafeCash addresses"));

openRPCConsoleAction = new QAction(platformStyle->TextColorIcon(":/icons/debugwindow"), tr("&Debug window"), this);
openRPCConsoleAction->setStatusTip(tr("Open debugging and diagnostic console"));
Expand All @@ -376,11 +376,11 @@ void BitcoinGUI::createActions()
usedReceivingAddressesAction->setStatusTip(tr("Show the list of used receiving addresses and labels"));

openAction = new QAction(platformStyle->TextColorIcon(":/icons/open"), tr("Open &URI..."), this);
openAction->setStatusTip(tr("Open a bitcoin: URI or payment request"));
openAction->setStatusTip(tr("Open a safecash: URI or payment request"));

showHelpMessageAction = new QAction(platformStyle->TextColorIcon(":/icons/info"), tr("&Command-line options"), this);
showHelpMessageAction->setMenuRole(QAction::NoRole);
showHelpMessageAction->setStatusTip(tr("Show the %1 help message to get a list with possible Bitcoin command-line options").arg(tr(PACKAGE_NAME)));
showHelpMessageAction->setStatusTip(tr("Show the %1 help message to get a list with possible SafeCash command-line options").arg(tr(PACKAGE_NAME)));

connect(quitAction, SIGNAL(triggered()), qApp, SLOT(quit()));
connect(aboutAction, SIGNAL(triggered()), this, SLOT(aboutClicked()));
Expand Down Expand Up @@ -735,7 +735,7 @@ void BitcoinGUI::updateNetworkState()
QString tooltip;

if (clientModel->getNetworkActive()) {
tooltip = tr("%n active connection(s) to Bitcoin network", "", count) + QString(".<br>") + tr("Click to disable network activity.");
tooltip = tr("%n active connection(s) to SafeCash network", "", count) + QString(".<br>") + tr("Click to disable network activity.");
} else {
tooltip = tr("Network activity disabled.") + QString("<br>") + tr("Click to enable network activity again.");
icon = ":/icons/network_disabled";
Expand Down Expand Up @@ -877,7 +877,7 @@ void BitcoinGUI::setNumBlocks(int count, const QDateTime& blockDate, double nVer

void BitcoinGUI::message(const QString &title, const QString &message, unsigned int style, bool *ret)
{
QString strTitle = tr("Bitcoin"); // default title
QString strTitle = tr("SafeCash"); // default title
// Default to information icon
int nMBoxIcon = QMessageBox::Information;
int nNotifyIcon = Notificator::Information;
Expand Down
4 changes: 2 additions & 2 deletions src/qt/bitcoingui.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class QProgressDialog;
QT_END_NAMESPACE

/**
Bitcoin GUI main class. This class represents the main window of the Bitcoin UI. It communicates with both the client and
SafeCash GUI main class. This class represents the main window of the SafeCash UI. It communicates with both the client and
wallet models to give the user an up-to-date view of the current core state.
*/
class BitcoinGUI : public QMainWindow
Expand All @@ -59,7 +59,7 @@ class BitcoinGUI : public QMainWindow

#ifdef ENABLE_WALLET
/** Set the wallet model.
The wallet model represents a bitcoin wallet, and offers access to the list of transactions, address book and sending
The wallet model represents a SafeCash wallet, and offers access to the list of transactions, address book and sending
functionality.
*/
bool addWallet(const QString& name, WalletModel *walletModel);
Expand Down

0 comments on commit 21b7850

Please sign in to comment.