2016-04-13 17:46:25 +02:00
< div
class="topbar-container"
2015-07-28 10:42:11 -03:00
ng-include="'views/includes/topbar.html'"
2015-11-09 15:20:15 -03:00
ng-init="titleSection='Bitcoin Network Fee Policy'; goBackToState = 'preferencesGlobal'; noColor = true">
2015-07-28 10:42:11 -03:00
< / div >
2016-06-10 18:41:52 -03:00
< div class = "content preferences" ng-controller = "preferencesFeeController" >
2015-10-08 11:58:55 -03:00
< h4 > < / h4 >
2016-06-10 18:41:52 -03:00
< div class = "preferences-fee" ng-show = "loading" >
2016-02-22 19:56:53 -03:00
< div class = "row p20 text-center" >
< div class = "columns large-12 medium-12 small-12 m10b" >
2016-06-09 10:32:40 -03:00
< ion-spinner class = "spinner-dark" icon = "lines" > < / ion-spinner >
2016-02-22 19:56:53 -03:00
< / div >
< div class = "size-12 text-gray m20t" translate >
Loading...
< / div >
< / div >
< / div >
2016-06-09 11:55:21 -03:00
2016-06-10 18:41:52 -03:00
< ion-radio class = "libe-b size-12 radio-label" ng-repeat = "fee in feeLevels.livenet" ng-value = "fee.level" ng-model = "currentFeeLevel"
ng-click="save(fee)">{{feeOpts[fee.level]|translate}}
2016-06-09 11:55:21 -03:00
< / ion-radio >
2015-07-28 10:42:11 -03:00
2015-08-19 11:35:58 -03:00
< div class = "row m20t" >
2016-06-10 18:41:52 -03:00
< div class = "text-gray size-12 text-center" ng-repeat = "fee in feeLevels.livenet" ng-if = "fee.level == currentFeeLevel" >
2015-08-03 12:01:51 -03:00
< div ng-show = "fee.nbBlocks" >
2016-06-09 12:06:13 -03:00
< span class = "text-bold" translate > Average confirmation time: {{fee.nbBlocks * 10}} minutes< / span > .
2015-08-03 12:01:51 -03:00
< / div >
2016-06-09 12:06:13 -03:00
< span class = "text-bold" translate > Current fee rate for this policy: {{fee.feePerKBUnit}}/kiB< / span >
2015-07-28 10:42:11 -03:00
< / div >
< / div >
2016-06-09 12:06:13 -03:00
< div class = "m15" >
2015-07-28 10:42:11 -03:00
< 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. Actual fees are determined based on network load and the selected policy.
< / div >
< / div >
< / div >
< div class = "extra-margin-bottom" > < / div >