From eacc5b24f832b8fde4119622970b4e3f72c069b5 Mon Sep 17 00:00:00 2001 From: Ben Woosley Date: Tue, 20 Feb 2018 14:16:33 -0800 Subject: [PATCH] Declare CMutableTransaction a struct in rawtransaction.h Because it's a struct. --- src/rpc/rawtransaction.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */