mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
40 lines
462 B
C++
40 lines
462 B
C++
//
|
|
// XXX Make sure all fields are recognized in transactions.
|
|
//
|
|
|
|
#include <boost/foreach.hpp>
|
|
#include <boost/format.hpp>
|
|
#include <boost/tuple/tuple_comparison.hpp>
|
|
#include <queue>
|
|
|
|
#include "TransactionEngine.h"
|
|
|
|
#include "../json/writer.h"
|
|
|
|
#include "Config.h"
|
|
#include "Contract.h"
|
|
#include "Interpreter.h"
|
|
#include "Log.h"
|
|
#include "RippleCalc.h"
|
|
#include "TransactionFormats.h"
|
|
#include "utils.h"
|
|
|
|
#define RIPPLE_PATHS_MAX 3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// vim:ts=4
|