[#node-GetMinimumTime] = xref:node.adoc[node]::GetMinimumTime :relfileprefix: ../ :mrdocs: Get the minimum time a miner should use in the next block. This always accounts for the BIP94 timewarp rule, so does not necessarily reflect the consensus limit. == Synopsis Declared in `<node/miner.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int64_t GetMinimumTime( xref:CBlockIndex.adoc[CBlockIndex] const* pindexPrev, int64_t difficulty_adjustment_interval); ---- == Return Value The minimum timestamp allowed for the next block. == Parameters [cols="1,4"] |=== | Name| Description | *pindexPrev* | The block the next block will build on. | *difficulty_adjustment_interval* | The number of blocks between difficulty adjustments. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#