Wallet/public/views/preferencesFee.html
Matias Alejo Garcia 0eb612ec3c allow emergency fee
2015-06-30 18:09:51 -03:00

22 lines
1.1 KiB
HTML

<div
class="topbar-container"
ng-include="'views/includes/topbar.html'"
ng-init="titleSection='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">
<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>
<div class="row column m20t">
<div class="text-gray size-12 text-center m20b" translate>
Bitcoin Transactions may include a fee that is collected by the miner that include it on a block. Higher the fee, higher is the incentive of the miners to include it. The 'Emergency' level should only be used when there is a network congestion.
</div>
</div>
</div>
<div class="extra-margin-bottom"></div>