diff options
| author | Ben Woosley <[email protected]> | 2018-02-20 14:16:33 -0800 |
|---|---|---|
| committer | Ben Woosley <[email protected]> | 2018-02-20 14:16:37 -0800 |
| commit | eacc5b24f832b8fde4119622970b4e3f72c069b5 (patch) | |
| tree | 7dd38cca12bdd85b13fa429498434cb06380da54 /src | |
| parent | Merge #12489: Bugfix: respect user defined configuration file (-conf) in QT s... (diff) | |
| download | discoin-eacc5b24f832b8fde4119622970b4e3f72c069b5.tar.xz discoin-eacc5b24f832b8fde4119622970b4e3f72c069b5.zip | |
Declare CMutableTransaction a struct in rawtransaction.h
Because it's a struct.
Diffstat (limited to 'src')
| -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 2186c1d5e..ec9d1f2cf 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 */ |