mirror of
https://github.com/XRPLF/rippled.git
synced 2026-02-19 13:22:36 +00:00
16 lines
244 B
C++
16 lines
244 B
C++
#include <xrpl/protocol/Protocol.h>
|
|
|
|
namespace xrpl {
|
|
bool
|
|
isVotingLedger(LedgerIndex seq)
|
|
{
|
|
return seq % FLAG_LEDGER_INTERVAL == 0;
|
|
}
|
|
|
|
bool
|
|
isFlagLedger(LedgerIndex seq)
|
|
{
|
|
return seq % FLAG_LEDGER_INTERVAL == 0;
|
|
}
|
|
} // namespace xrpl
|