aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBen Woosley <ben.woosley@gmail.com>2018-02-20 14:16:33 -0800
committerBen Woosley <ben.woosley@gmail.com>2018-02-20 14:16:37 -0800
commiteacc5b24f832b8fde4119622970b4e3f72c069b5 (patch)
tree7dd38cca12bdd85b13fa429498434cb06380da54 /src
parente117cfe45eee9169409e74a44ef4a866be25bc35 (diff)
downloadbitcoin-eacc5b24f832b8fde4119622970b4e3f72c069b5.tar.xz
Declare CMutableTransaction a struct in rawtransaction.h
Because it's a struct.
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 */