Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(GUI): removing unnecessary tags in transaction confirm dialog #893

Merged
merged 8 commits into from
Jan 2, 2024
2 changes: 1 addition & 1 deletion cmd/gtk/assets/ui/dialog_about.ui
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<property name="version">0.0.0</property>
<property name="comments" translatable="yes">
Building Decentralized Future Together!
Pactus is a low-cost, high-performance, and scalable decentralized blockchain protocol with a novel PoS consensus.
Pactus is a low-cost, high-performance, and scalable decentralized blockchain protocol with a SSPoS consensus mechanism.
</property>
<property name="license-type">mit-x11</property>
<child internal-child="vbox">
Expand Down
8 changes: 4 additions & 4 deletions cmd/gtk/dialog_transaction_bond.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ func broadcastTransactionBond(wlt *wallet.Wallet, valAddrs []crypto.Address) {
msg := fmt.Sprintf(`
You are going to sign and broadcast this transaction:

From: <b>%v</b>
To: <b>%v</b>
Amount: <b>%v</b>
Fee: <b>%v</b>
From: %v
To: %v
Amount: %v
Fee: %v

THIS ACTION IS NOT REVERSIBLE. Do you want to continue?`, sender, receiver,
util.ChangeToString(amount), util.ChangeToString(trx.Fee()))
Expand Down
8 changes: 4 additions & 4 deletions cmd/gtk/dialog_transaction_transfer.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ func broadcastTransactionSend(wlt *wallet.Wallet) {
msg := fmt.Sprintf(`
You are going to sign and broadcast this transaction:

From: <b>%v</b>
To: <b>%v</b>
Amount: <b>%v</b>
Fee: <b>%v</b>
From: %v
To: %v
Amount: %v
Fee: %v

THIS ACTION IS NOT REVERSIBLE. Do you want to continue?`, sender, receiver,
util.ChangeToString(amount), util.ChangeToString(trx.Fee()))
Expand Down
Loading