Browse Source

Update DGB/RVN to match master

Added some changes that were not applied to new-coins during the previous merge from the master branch.
new-coins
QuickMythril 2 years ago
parent
commit
c3b1875672
  1. 16
      qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js

16
qortal-ui-plugins/plugins/core/wallet/wallet-app.src.js

@ -1357,7 +1357,7 @@ class MultiWallet extends LitElement {
</p> </p>
<div style="margin-bottom: 0;"> <div style="margin-bottom: 0;">
<p style="margin-bottom: 0;"> <p style="margin-bottom: 0;">
${translate("walletpage.wchange24")}: <span style="font-weight: bold;">${(this.dgbFeePerByte / 1e8).toFixed(8)} DGB</span><br>L${translate("walletpage.wchange25")} ${translate("walletpage.wchange24")}: <span style="font-weight: bold;">${(this.dgbFeePerByte / 1e8).toFixed(8)} DGB</span><br>${translate("walletpage.wchange25")}
</p> </p>
<paper-slider <paper-slider
class="blue" class="blue"
@ -1371,8 +1371,8 @@ class MultiWallet extends LitElement {
> >
</paper-slider> </paper-slider>
</div> </div>
<p style="color: red;">${this.errorMessage}</p> ${this.renderClearSuccess()}
<p style="color: green;">${this.successMessage}</p> ${this.renderClearError()}
${this.sendMoneyLoading ? html` <paper-progress indeterminate style="width: 100%; margin: 4px;"></paper-progress> ` : ''} ${this.sendMoneyLoading ? html` <paper-progress indeterminate style="width: 100%; margin: 4px;"></paper-progress> ` : ''}
<div class="buttons"> <div class="buttons">
<div> <div>
@ -1385,7 +1385,7 @@ class MultiWallet extends LitElement {
</div> </div>
<mwc-button <mwc-button
slot="primaryAction" slot="primaryAction"
dialogAction="cancel" @click="${() => this.closeDgbDialog()}"
class="red" class="red"
> >
${translate("general.close")} ${translate("general.close")}
@ -1433,7 +1433,7 @@ class MultiWallet extends LitElement {
</p> </p>
<div style="margin-bottom: 0;"> <div style="margin-bottom: 0;">
<p style="margin-bottom: 0;"> <p style="margin-bottom: 0;">
${translate("walletpage.wchange24")}: <span style="font-weight: bold;">${(this.rvnFeePerByte / 1e8).toFixed(8)} RVN</span><br>L${translate("walletpage.wchange25")} ${translate("walletpage.wchange24")}: <span style="font-weight: bold;">${(this.rvnFeePerByte / 1e8).toFixed(8)} RVN</span><br>${translate("walletpage.wchange25")}
</p> </p>
<paper-slider <paper-slider
class="blue" class="blue"
@ -1447,8 +1447,8 @@ class MultiWallet extends LitElement {
> >
</paper-slider> </paper-slider>
</div> </div>
<p style="color: red;">${this.errorMessage}</p> ${this.renderClearSuccess()}
<p style="color: green;">${this.successMessage}</p> ${this.renderClearError()}
${this.sendMoneyLoading ? html` <paper-progress indeterminate style="width: 100%; margin: 4px;"></paper-progress> ` : ''} ${this.sendMoneyLoading ? html` <paper-progress indeterminate style="width: 100%; margin: 4px;"></paper-progress> ` : ''}
<div class="buttons"> <div class="buttons">
<div> <div>
@ -1461,7 +1461,7 @@ class MultiWallet extends LitElement {
</div> </div>
<mwc-button <mwc-button
slot="primaryAction" slot="primaryAction"
dialogAction="cancel" @click="${() => this.closeRvnDialog()}"
class="red" class="red"
> >
${translate("general.close")} ${translate("general.close")}

Loading…
Cancel
Save