diff options
| author | Cozz Lovan <[email protected]> | 2014-07-23 14:34:36 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-03-13 11:04:18 +0100 |
| commit | 292623adf59edea52b2927b3d67fd2ff7f997882 (patch) | |
| tree | afec21b4e7ff1c2b551b060f5f435895d43d15d6 /src/qt/forms/sendcoinsentry.ui | |
| parent | [Qt] Code-movement-only: Format confirmation message in sendcoinsdialog (diff) | |
| download | discoin-292623adf59edea52b2927b3d67fd2ff7f997882.tar.xz discoin-292623adf59edea52b2927b3d67fd2ff7f997882.zip | |
Subtract fee from amount
Fixes #2724 and #1570.
Adds the
automatically-subtract-the-fee-from-the-amount-and-send-whats-left
feature to the GUI and RPC (sendtoaddress,sendmany).
Diffstat (limited to 'src/qt/forms/sendcoinsentry.ui')
| -rw-r--r-- | src/qt/forms/sendcoinsentry.ui | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/qt/forms/sendcoinsentry.ui b/src/qt/forms/sendcoinsentry.ui index 9f8c0a484..b36292843 100644 --- a/src/qt/forms/sendcoinsentry.ui +++ b/src/qt/forms/sendcoinsentry.ui @@ -157,7 +157,21 @@ </widget> </item> <item row="2" column="1"> - <widget class="BitcoinAmountField" name="payAmount"/> + <layout class="QHBoxLayout" name="horizontalLayoutAmount" stretch="0,1"> + <item> + <widget class="BitcoinAmountField" name="payAmount"/> + </item> + <item> + <widget class="QCheckBox" name="checkboxSubtractFeeFromAmount"> + <property name="toolTip"> + <string>The fee will be deducted from the amount being sent. The recipient will receive less bitcoins than you enter in the amount field. If multiple recipients are selected, the fee is split equally.</string> + </property> + <property name="text"> + <string>S&ubtract fee from amount</string> + </property> + </widget> + </item> + </layout> </item> <item row="3" column="0"> <widget class="QLabel" name="messageLabel"> |