From b0849613bf02b61774b23804c8feed54aa88474a Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Mon, 8 Aug 2011 17:38:17 +0200 Subject: QtUI code cleanup / comment improvements --- src/qt/walletmodel.h | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'src/qt/walletmodel.h') diff --git a/src/qt/walletmodel.h b/src/qt/walletmodel.h index c989e7fbbe..bb1c6e85d3 100644 --- a/src/qt/walletmodel.h +++ b/src/qt/walletmodel.h @@ -15,7 +15,7 @@ struct SendCoinsRecipient qint64 amount; }; -// Interface to a Bitcoin wallet +// Interface to Bitcoin wallet from Qt view code class WalletModel : public QObject { Q_OBJECT @@ -47,9 +47,7 @@ public: // Check address for validity bool validateAddress(const QString &address); - // Return status record for SendCoins - // fee is used in case status is "AmountWithFeeExceedsBalance" - // hex is filled with the transaction hash if status is "OK" + // Return status record for SendCoins, contains error id + information struct SendCoinsReturn { SendCoinsReturn(StatusCode status, @@ -57,11 +55,11 @@ public: QString hex=QString()): status(status), fee(fee), hex(hex) {} StatusCode status; - qint64 fee; - QString hex; + qint64 fee; // is used in case status is "AmountWithFeeExceedsBalance" + QString hex; // is filled with the transaction hash if status is "OK" }; - // Send coins to list of recipients + // Send coins to a list of recipients SendCoinsReturn sendCoins(const QList &recipients); private: CWallet *wallet; -- cgit v1.2.3