Permalink
Browse files

missing white space in function arg

  • Loading branch information...
1 parent 479afa0 commit 69a4339ef509da633e83fa9968ac646c58b95390 @greenaddress greenaddress committed Jul 12, 2017
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/validation.cpp
View
@@ -455,7 +455,7 @@ static bool AcceptToMemoryPoolWorker(const CChainParams& chainparams, CTxMemPool
// Reject transactions with witness before segregated witness activates (override with -prematurewitness)
bool witnessEnabled = IsWitnessEnabled(chainActive.Tip(), chainparams.GetConsensus());
- if (!GetBoolArg("-prematurewitness",false) && tx.HasWitness() && !witnessEnabled) {
+ if (!GetBoolArg("-prematurewitness", false) && tx.HasWitness() && !witnessEnabled) {
return state.DoS(0, false, REJECT_NONSTANDARD, "no-witness-yet", true);
}

0 comments on commit 69a4339

Please sign in to comment.