aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2018-02-21 15:42:47 -0500
committerMarcoFalke <falke.marco@gmail.com>2018-02-21 15:42:49 -0500
commite4ffcacc2187d3419c8ea12b82fb06d82d8751d2 (patch)
tree7dd38cca12bdd85b13fa429498434cb06380da54 /src
parente117cfe45eee9169409e74a44ef4a866be25bc35 (diff)
parenteacc5b24f832b8fde4119622970b4e3f72c069b5 (diff)
downloadbitcoin-e4ffcacc2187d3419c8ea12b82fb06d82d8751d2.tar.xz
Merge #12494: Declare CMutableTransaction a struct in rawtransaction.h
eacc5b24f8 Declare CMutableTransaction a struct in rawtransaction.h (Ben Woosley) Pull request description: Because it's a struct. Fix for #10579 - this was called out in code review. https://github.com/bitcoin/bitcoin/pull/10579#discussion_r168936821 Tree-SHA512: 10758a667218481de6f50b5ed874e92eb350c621f7a6355fba7da6ab42b09e1764f827e89491c8663e554fcfd23f124b299f968237c6ad1ff7819e211bd7e521
Diffstat (limited to 'src')
-rw-r--r--src/rpc/rawtransaction.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/rawtransaction.h b/src/rpc/rawtransaction.h
index 2186c1d5e7..ec9d1f2cf0 100644
--- a/src/rpc/rawtransaction.h
+++ b/src/rpc/rawtransaction.h
@@ -6,7 +6,7 @@
#define BITCOIN_RPC_RAWTRANSACTION_H
class CBasicKeyStore;
-class CMutableTransaction;
+struct CMutableTransaction;
class UniValue;
/** Sign a transaction with the given keystore and previous transactions */