mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-04 01:06:48 +00:00
This change replaces all include guards in the `src/` and `include/` directories by `#pragma once`.
20 lines
448 B
C++
20 lines
448 B
C++
#pragma once
|
|
|
|
#include <test/csf/Tx.h>
|
|
#include <test/csf/Validation.h>
|
|
#include <test/csf/ledgers.h>
|
|
|
|
#include <xrpld/consensus/ConsensusProposal.h>
|
|
|
|
namespace xrpl {
|
|
namespace test {
|
|
namespace csf {
|
|
/** Proposal is a position taken in the consensus process and is represented
|
|
directly from the generic types.
|
|
*/
|
|
using Proposal = ConsensusProposal<PeerID, Ledger::ID, TxSet::ID>;
|
|
|
|
} // namespace csf
|
|
} // namespace test
|
|
} // namespace xrpl
|