Skip to content

Commit 69a4339

Browse files
author
Lawrence Nahum
committed
missing white space in function arg
1 parent 479afa0 commit 69a4339

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/validation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ static bool AcceptToMemoryPoolWorker(const CChainParams& chainparams, CTxMemPool
455455

456456
// Reject transactions with witness before segregated witness activates (override with -prematurewitness)
457457
bool witnessEnabled = IsWitnessEnabled(chainActive.Tip(), chainparams.GetConsensus());
458-
if (!GetBoolArg("-prematurewitness",false) && tx.HasWitness() && !witnessEnabled) {
458+
if (!GetBoolArg("-prematurewitness", false) && tx.HasWitness() && !witnessEnabled) {
459459
return state.DoS(0, false, REJECT_NONSTANDARD, "no-witness-yet", true);
460460
}
461461

0 commit comments

Comments
 (0)