diff options
| author | Jonas Schnelli <[email protected]> | 2017-07-13 09:21:08 +0200 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2017-07-13 09:21:14 +0200 |
| commit | 7666250ffb4e8fc5c98556e2c8e121c72d6fe54c (patch) | |
| tree | 868839ad4033b99ea83d6c32a2c1894d4b77dd12 /src/validation.cpp | |
| parent | Merge #10780: Simplify "!foo || (foo && bar)" as "!foo || bar" (diff) | |
| parent | missing white space in function arg (diff) | |
| download | discoin-7666250ffb4e8fc5c98556e2c8e121c72d6fe54c.tar.xz discoin-7666250ffb4e8fc5c98556e2c8e121c72d6fe54c.zip | |
Merge #10810: missing white space in function arg
69a4339ef missing white space in function arg (Lawrence Nahum)
Pull request description:
Tree-SHA512: 94d832eca0b5429cf48c7c1d4489942b53182c5b7ad9f24264867e7631301173c23a48f7b2e8fd22ff1b3137bafacb3f9d4320f4df235668c9096aaefff7afe8
Diffstat (limited to 'src/validation.cpp')
| -rw-r--r-- | src/validation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validation.cpp b/src/validation.cpp index 16d11529b..ddc8b1b96 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -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); } |