aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/mining.cpp
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2021-03-13 21:23:17 +0200
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2021-07-05 08:59:38 +0300
commit014110c47d94ece6e3e655cdbf02ed8c91c7a5cf (patch)
treee8081ec6eb17c133d84b3457561021f5252e0807 /src/rpc/mining.cpp
parent7a49fdc58115845ece3a9890bf9498bee6b559de (diff)
downloadbitcoin-014110c47d94ece6e3e655cdbf02ed8c91c7a5cf.tar.xz
Use C++17 [[fallthrough]] attribute, and drop -Wno-implicit-fallthrough
Diffstat (limited to 'src/rpc/mining.cpp')
-rw-r--r--src/rpc/mining.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/mining.cpp b/src/rpc/mining.cpp
index 2762d78493..692096367c 100644
--- a/src/rpc/mining.cpp
+++ b/src/rpc/mining.cpp
@@ -850,7 +850,7 @@ static RPCHelpMan getblocktemplate()
case ThresholdState::LOCKED_IN:
// Ensure bit is set in block version
pblock->nVersion |= g_versionbitscache.Mask(consensusParams, pos);
- // FALL THROUGH to get vbavailable set...
+ [[fallthrough]];
case ThresholdState::STARTED:
{
const struct VBDeploymentInfo& vbinfo = VersionBitsDeploymentInfo[pos];