diff options
author | Ben Woosley <ben.woosley@gmail.com> | 2018-02-20 14:16:33 -0800 |
---|---|---|
committer | Ben Woosley <ben.woosley@gmail.com> | 2018-02-20 14:16:37 -0800 |
commit | eacc5b24f832b8fde4119622970b4e3f72c069b5 (patch) | |
tree | 7dd38cca12bdd85b13fa429498434cb06380da54 /src/rpc/rawtransaction.h | |
parent | e117cfe45eee9169409e74a44ef4a866be25bc35 (diff) |
Declare CMutableTransaction a struct in rawtransaction.h
Because it's a struct.
Diffstat (limited to 'src/rpc/rawtransaction.h')
-rw-r--r-- | src/rpc/rawtransaction.h | 2 |
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 */ |