Skip to content

Commit 1cde8b4

Browse files
committed
[Trivial] Fix some comment/output: 'bitcoind' --> 'pivxd'
1 parent 29c267e commit 1cde8b4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/pivxd.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,12 @@ bool AppInit(int argc, char* argv[])
105105
// Error out when loose non-argument tokens are encountered on command line
106106
for (int i = 1; i < argc; i++) {
107107
if (!IsSwitchChar(argv[i][0])) {
108-
fprintf(stderr, "Error: Command line contains unexpected token '%s', see bitcoind -h for a list of options.\n", argv[i]);
108+
fprintf(stderr, "Error: Command line contains unexpected token '%s', see pivxd -h for a list of options.\n", argv[i]);
109109
exit(EXIT_FAILURE);
110110
}
111111
}
112112

113-
// -server defaults to true for bitcoind but not for the GUI so do this here
113+
// -server defaults to true for pivxd but not for the GUI so do this here
114114
gArgs.SoftSetBoolArg("-server", true);
115115
// Set this early so that parameter interactions go to console
116116
InitLogging();

src/util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ void ArgsManager::InterpretNegatedOption(std::string& key, std::string& val)
197197
m_negated_args.insert(key);
198198
val = bool_val ? "0" : "1";
199199
} else {
200-
// In an invocation like "bitcoind -nofoo -foo" we want to unmark -foo
200+
// In an invocation like "pivxd -nofoo -foo" we want to unmark -foo
201201
// as negated when we see the second option.
202202
m_negated_args.erase(key);
203203
}

src/wallet/rpcdump.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1065,7 +1065,7 @@ UniValue importmulti(const JSONRPCRequest& mainRequest)
10651065
"block from time %d, which is after or within %d seconds of key creation, and "
10661066
"could contain transactions pertaining to the key. As a result, transactions "
10671067
"and coins using this key may not appear in the wallet. This error could be "
1068-
"caused by pruning or data corruption (see bitcoind log for details) and could "
1068+
"caused by pruning or data corruption (see pivxd log for details) and could "
10691069
"be dealt with by downloading and rescanning the relevant blocks (see -reindex "
10701070
"and -rescan options).",
10711071
GetImportTimestamp(request, now), scannedTime - TIMESTAMP_WINDOW - 1, TIMESTAMP_WINDOW)));

0 commit comments

Comments
 (0)