42 lines
1.7 KiB
HTML
42 lines
1.7 KiB
HTML
<nav class="tab-bar">
|
|
<section class="left-small">
|
|
<a ng-click="cancel()" class="p10">
|
|
<span class="text-close" translate>Close</span>
|
|
</a>
|
|
</section>
|
|
<section class="middle tab-bar-section">
|
|
<h1 class="title ellipsis" ng-style="{'color':color}" translate>
|
|
Bitcoin Network Fee Policy
|
|
</h1>
|
|
</section>
|
|
</nav>
|
|
|
|
|
|
<div class="modal-content fix-modals-touch" ng-controller="preferencesFeeController as prefFee">
|
|
<ul class="no-bullet m0 size-14">
|
|
<h4 class="title m0" translate>Fee level [{{network}}]</h4>
|
|
<li ng-repeat="fee in (network == 'livenet' ? feeLevels.livenet : feeLevels.testnet)" ng-click="save(fee.level)" class="line-b p20">
|
|
<span ng-show="fee.level == 'priority'" translate>Priority</span>
|
|
<span ng-show="fee.level == 'normal'" translate>Normal</span>
|
|
<span ng-show="fee.level == 'economy'" translate>Economy</span>
|
|
<span class="size-12 text-light" translate>{{fee.feePerKBUnit}} per kB</span>
|
|
<i class="fi-check size-16 right" ng-show="currentFeeLevel == fee.level"></i>
|
|
</li>
|
|
</ul>
|
|
|
|
<div class="row column m20t">
|
|
<div class="text-gray size-12 text-center" ng-repeat="fee in (network == 'livenet' ? feeLevels.livenet :
|
|
feeLevels.testnet)" ng-if="fee.level == currentFeeLevel">
|
|
<span translate>Average confirmation time: {{fee.nbBlocks * 10}} minutes</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row column m20t">
|
|
<div class="text-gray size-12 text-center" translate>
|
|
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.
|
|
</div>
|
|
</div>
|
|
|
|
<div class="extra-margin-bottom"></div>
|
|
</div>
|
|
|