Skip to content

Commit

Permalink
fix(GUI): removing unnecessary tags in transaction confirm dialog (#893)
Browse files Browse the repository at this point in the history
  • Loading branch information
kehiy authored Jan 2, 2024
1 parent 515cc26 commit 4407619
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
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

0 comments on commit 4407619

Please sign in to comment.