mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
19 lines
386 B
C++
19 lines
386 B
C++
#pragma once
|
|
|
|
#include <xrpl/ledger/AmendmentTable.h>
|
|
|
|
#include <optional>
|
|
|
|
namespace xrpl {
|
|
|
|
std::unique_ptr<AmendmentTable>
|
|
make_AmendmentTable(
|
|
ServiceRegistry& registry,
|
|
std::chrono::seconds majorityTime,
|
|
std::vector<AmendmentTable::FeatureInfo> const& supported,
|
|
Section const& enabled,
|
|
Section const& vetoed,
|
|
beast::Journal journal);
|
|
|
|
} // namespace xrpl
|