mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-02-11 09:42:17 +01:00
convert C-style (void) parameter lists to C++ style ()
This commit is contained in:
@@ -4682,7 +4682,7 @@ int VersionBitsTipStateSinceHeight(const Consensus::Params& params, Consensus::D
|
||||
|
||||
static const uint64_t MEMPOOL_DUMP_VERSION = 1;
|
||||
|
||||
bool LoadMempool(void)
|
||||
bool LoadMempool()
|
||||
{
|
||||
const CChainParams& chainparams = Params();
|
||||
int64_t nExpiryTimeout = gArgs.GetArg("-mempoolexpiry", DEFAULT_MEMPOOL_EXPIRY) * 60 * 60;
|
||||
@@ -4759,7 +4759,7 @@ bool LoadMempool(void)
|
||||
return true;
|
||||
}
|
||||
|
||||
bool DumpMempool(void)
|
||||
bool DumpMempool()
|
||||
{
|
||||
int64_t start = GetTimeMicros();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user