diff options
| author | Russell Yanofsky <[email protected]> | 2019-09-17 18:28:03 -0400 |
|---|---|---|
| committer | Russell Yanofsky <[email protected]> | 2019-10-28 10:30:51 -0400 |
| commit | e6f4f895d5e42feaf7bfa5f41e80292aaa73cd7d (patch) | |
| tree | 1c12f814ae2ac88316066d334274354c669d7aa5 /src/node/transaction.cpp | |
| parent | MOVEONLY: Move NodeContext struct to node/context.h (diff) | |
| download | discoin-e6f4f895d5e42feaf7bfa5f41e80292aaa73cd7d.tar.xz discoin-e6f4f895d5e42feaf7bfa5f41e80292aaa73cd7d.zip | |
Pass NodeContext, ConnMan, BanMan references more places
So g_connman and g_banman globals can be removed next commit.
Diffstat (limited to 'src/node/transaction.cpp')
| -rw-r--r-- | src/node/transaction.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/node/transaction.cpp b/src/node/transaction.cpp index 7783671a6..2577c2559 100644 --- a/src/node/transaction.cpp +++ b/src/node/transaction.cpp @@ -6,6 +6,7 @@ #include <consensus/validation.h> #include <net.h> #include <net_processing.h> +#include <node/context.h> #include <util/validation.h> #include <validation.h> #include <validationinterface.h> @@ -13,7 +14,7 @@ #include <future> -TransactionError BroadcastTransaction(const CTransactionRef tx, std::string& err_string, const CAmount& max_tx_fee, bool relay, bool wait_callback) +TransactionError BroadcastTransaction(NodeContext& node, const CTransactionRef tx, std::string& err_string, const CAmount& max_tx_fee, bool relay, bool wait_callback) { // BroadcastTransaction can be called by either sendrawtransaction RPC or wallet RPCs. // g_connman is assigned both before chain clients and before RPC server is accepting calls, |