mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
18 lines
322 B
C++
18 lines
322 B
C++
#pragma once
|
|
|
|
#include <xrpl/beast/utility/Journal.h>
|
|
#include <xrpl/ledger/ApplyView.h>
|
|
#include <xrpl/protocol/TER.h>
|
|
#include <xrpl/protocol/UintTypes.h>
|
|
|
|
namespace xrpl {
|
|
|
|
TER
|
|
closeChannel(
|
|
std::shared_ptr<SLE> const& slep,
|
|
ApplyView& view,
|
|
uint256 const& key,
|
|
beast::Journal j);
|
|
|
|
} // namespace xrpl
|