Skip to content
This repository was archived by the owner on Oct 31, 2018. It is now read-only.

Commit bcda6ce

Browse files
Coincontrol dialog correction
1 parent e5930af commit bcda6ce

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/alert.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class CUnsignedAlert
3030
int nCancel;
3131
std::set<int> setCancel;
3232
int nMinVer; // lowest version inclusive
33-
int nMaxVer; // BBKest version inclusive
33+
int nMaxVer; // BBK version inclusive
3434
std::set<std::string> setSubVer; // empty matches all
3535
int nPriority;
3636

src/miner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ CBlock* CreateNewBlock(CWallet* pwallet, bool fProofOfStake, int64_t* pFees)
263263

264264
while (!vecPriority.empty())
265265
{
266-
// Take BBKest priority transaction off the priority queue:
266+
// Take BBK priority transaction off the priority queue:
267267
double dPriority = vecPriority.front().get<0>();
268268
double dFeePerKb = vecPriority.front().get<1>();
269269
CTransaction& tx = *(vecPriority.front().get<2>());

src/qt/coincontroldialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ QString CoinControlDialog::getPriorityLabel(double dPriority)
384384
{
385385
if (dPriority > 576000ULL) // at least medium, this number is from AllowFree(), the other thresholds are kinda random
386386
{
387-
if (dPriority > 5760000000ULL) return tr("BBKest");
387+
if (dPriority > 5760000000ULL) return tr("BBK");
388388
else if (dPriority > 576000000ULL) return tr("BBK");
389389
else if (dPriority > 57600000ULL) return tr("medium-BBK");
390390
else return tr("medium");

src/rpcmining.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ Value getblocktemplate(const Array& params, bool fHelp)
353353
"getblocktemplate [params]\n"
354354
"Returns data needed to construct a block to work on:\n"
355355
" \"version\" : block version\n"
356-
" \"previousblockhash\" : hash of current BBKest block\n"
356+
" \"previousblockhash\" : hash of current BBK block\n"
357357
" \"transactions\" : contents of non-coinbase transactions that should be included in the next block\n"
358358
" \"coinbaseaux\" : data that should be included in coinbase\n"
359359
" \"coinbasevalue\" : maximum allowable input to coinbase transaction, including the generation award and transaction fees\n"

src/script.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ static bool IsCanonicalPubKey(const valtype &vchPubKey) {
271271
static bool IsCanonicalSignature(const valtype &vchSig) {
272272
// See https://bitcointalk.org/index.php?topic=8392.msg127623#msg127623
273273
// A canonical signature exists of: <30> <total len> <02> <len R> <R> <02> <len S> <S> <hashtype>
274-
// Where R and S are not negative (their first byte has its BBKest bit not set), and not
274+
// Where R and S are not negative (their first byte has its BBK bit not set), and not
275275
// excessively padded (do not start with a 0 byte, unless an otherwise negative number follows,
276276
// in which case a single 0 byte is necessary and even required).
277277
if (vchSig.size() < 9)

0 commit comments

Comments
 (0)