-
Notifications
You must be signed in to change notification settings - Fork 36.6k
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
ui: Add "Copy raw transaction data" to transaction list context menu #7051
Conversation
Concept ACK |
@@ -141,6 +141,7 @@ TransactionView::TransactionView(const PlatformStyle *platformStyle, QWidget *pa | |||
QAction *copyLabelAction = new QAction(tr("Copy label"), this); | |||
QAction *copyAmountAction = new QAction(tr("Copy amount"), this); | |||
QAction *copyTxIDAction = new QAction(tr("Copy transaction ID"), this); | |||
QAction *copyTxHexAction = new QAction(tr("Copy raw transaction data"), this); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: You could get rid of the "data" suffix because "raw transaction" already implies this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sounds good to me. Did decide not to use hex
as that will give translation issues :-)
Nice! utACK. Will test soon. |
Neat. Concept ACK. |
I like it! ACK (please remove the "data"). |
a3d9026
to
b4f3e9c
Compare
Add a way to quickly copy transaction hex. Primarily useful when manually submitting transactions, e.g. `-walletbroadcast=0` is set.
utACK b4f3e9c |
b4f3e9c ui: Add "Copy raw transaction data" to transaction list context menu (Wladimir J. van der Laan)
Add a way to quickly copy transaction hex to clipboard.
Primarily useful when manually submitting transactions, e.g.
-walletbroadcast=0
is set.