mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-05 01:37:00 +00:00
This change reorganizes the `tx/transactors` directory for consistency and discoverability. There are no behavioral changes, this is a pure refactor. Underscores were chosen as the way to separate multi-words as this is the more popular option in C++ projects. Specific changes: - Rename all subdirectories to lowercase/snake_case (`AMM` → `amm`, `Check` → `check`, `NFT` → `nft`, `PermissionedDomain` → `permissioned_domain`, etc.) - Merge `AMM/` and `Offer/` into `dex/`, including `PermissionedDEXHelpers` - Rename `MPT/` → `token/`, absorbing `SetTrust` and `Clawback` - Move top-level transactors into named groups: `account/`, `bridge/`, `credentials/`, `did/`, `escrow/`, `oracle/`, `payment/`, `payment_channel/`, `system/` - Update all include paths across the codebase and `transactions.macro`
36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include <xrpl/protocol/Permissions.h>
|
|
#include <xrpl/protocol/STLedgerEntry.h>
|
|
#include <xrpl/protocol/STTx.h>
|
|
#include <xrpl/protocol/TER.h>
|
|
|
|
namespace xrpl {
|
|
|
|
/**
|
|
* Check if the delegate account has permission to execute the transaction.
|
|
* @param delegate The delegate account.
|
|
* @param tx The transaction that the delegate account intends to execute.
|
|
* @return tesSUCCESS if the transaction is allowed, terNO_DELEGATE_PERMISSION
|
|
* if not.
|
|
*/
|
|
NotTEC
|
|
checkTxPermission(std::shared_ptr<SLE const> const& delegate, STTx const& tx);
|
|
|
|
/**
|
|
* Load the granular permissions granted to the delegate account for the
|
|
* specified transaction type
|
|
* @param delegate The delegate account.
|
|
* @param type Used to determine which granted granular permissions to load,
|
|
* based on the transaction type.
|
|
* @param granularPermissions Granted granular permissions tied to the
|
|
* transaction type.
|
|
*/
|
|
void
|
|
loadGranularPermission(
|
|
std::shared_ptr<SLE const> const& delegate,
|
|
TxType const& type,
|
|
std::unordered_set<GranularPermissionType>& granularPermissions);
|
|
|
|
} // namespace xrpl
|