mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-04 01:06:48 +00:00
This change decouples app/tx from `Application` and `Config` to clear the way to moving transactors to `libxrpl`.
15 lines
235 B
C++
15 lines
235 B
C++
#pragma once
|
|
|
|
#include <xrpl/core/HashRouter.h>
|
|
|
|
namespace xrpl {
|
|
|
|
// Forward declaration
|
|
class Config;
|
|
|
|
/** Create HashRouter setup from configuration */
|
|
HashRouter::Setup
|
|
setup_HashRouter(Config const& config);
|
|
|
|
} // namespace xrpl
|