mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-15 12:51:00 +02:00
convert C-style (void) parameter lists to C++ style ()
This commit is contained in:
parent
f0a6a922fe
commit
3ccfa34b32
16 changed files with 27 additions and 27 deletions
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue