Wallet/public/views/preferencesFee.html

22 lines
1.1 KiB
HTML
Raw Normal View History

<div
class="topbar-container"
ng-include="'views/includes/topbar.html'"
2015-07-01 10:42:02 -03:00
ng-init="titleSection='Bitcoin Network Fee Policy'; goBackToState = 'preferences'; noColor = true">
</div>
<div class="content preferences" ng-controller="preferencesFeeController as prefFee">
<div ng-repeat="fee in prefFee.feeOpts" ng-click="prefFee.save(fee)" class="line-b p20 size-14">
2015-06-30 11:04:34 -03:00
<span ng-if="fee.red" style="color:red">{{fee.name|translate}} (<span translate>{{fee.value}} bits per kB</span>)</span>
<span ng-if="!fee.red">{{fee.name|translate}} (<span translate>{{fee.value}} bits per kB</span>)</span>
<i class="fi-check size-16 right" ng-show="prefFee.feeName == fee.name"></i>
</div>
2015-06-30 11:04:34 -03:00
<div class="row column m20t">
<div class="text-gray size-12 text-center m20b" translate>
2015-06-30 11:17:48 -03:00
Bitcoin transactions may include a fee collected by miners on the network. The higher the fee, the greater the incentive a miner has to include that transaction in a block. The Emergency level should only be used when there is a network congestion.
2015-06-30 11:04:34 -03:00
</div>
</div>
</div>
2015-06-30 11:04:34 -03:00
<div class="extra-margin-bottom"></div>