refactor: rename fee to fee-rate

This commit is contained in:
Vlad Stan 2022-07-25 19:40:35 +03:00
parent e98e3504ad
commit be6dbb68c6
4 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ async function fees(path) {
props: ['totalfee', 'sats_denominated'],
watch: {
immediate: true,
'totalfee': function(newVal, oldVal) {
totalfee: function (newVal, oldVal) {
console.log('### ', newVal, oldVal)
}
},

View File

@ -6,7 +6,7 @@ const watchOnly = async () => {
await addressList('static/components/address-list/address-list.html')
await history('static/components/history/history.html')
await utxoList('static/components/utxo-list/utxo-list.html')
await fees('static/components/fees/fees.html')
await fees('static/components/fee-rate/fee-rate.html')
await payment('static/components/payment/payment.html')
Vue.filter('reverse', function (value) {

View File

@ -949,7 +949,7 @@
<script src="{{ url_for('watchonly_static', path='components/address-list/address-list.js') }}"></script>
<script src="{{ url_for('watchonly_static', path='components/history/history.js') }}"></script>
<script src="{{ url_for('watchonly_static', path='components/utxo-list/utxo-list.js') }}"></script>
<script src="{{ url_for('watchonly_static', path='components/fees/fees.js') }}"></script>
<script src="{{ url_for('watchonly_static', path='components/fee-rate/fee-rate.js') }}"></script>
<script src="{{ url_for('watchonly_static', path='components/payment/payment.js') }}"></script>
<script src="{{ url_for('watchonly_static', path='js/index.js') }}"></script>
{% endblock %}