diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-11-17 11:17:09 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-11-19 11:08:29 +0100 |
| commit | b4f3e9c09eab533179be8efe478a0f21c3f83e6c (patch) | |
| tree | 6b89bb89cd487db59149e372a4ed477e928ec0a9 /src/qt/transactiontablemodel.h | |
| parent | Merge pull request #7026 (diff) | |
| download | discoin-b4f3e9c09eab533179be8efe478a0f21c3f83e6c.tar.xz discoin-b4f3e9c09eab533179be8efe478a0f21c3f83e6c.zip | |
ui: Add "Copy raw transaction data" to transaction list context menu
Add a way to quickly copy transaction hex.
Primarily useful when manually submitting transactions,
e.g. `-walletbroadcast=0` is set.
Diffstat (limited to 'src/qt/transactiontablemodel.h')
| -rw-r--r-- | src/qt/transactiontablemodel.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/transactiontablemodel.h b/src/qt/transactiontablemodel.h index 2089f703a..601f893d4 100644 --- a/src/qt/transactiontablemodel.h +++ b/src/qt/transactiontablemodel.h @@ -60,6 +60,8 @@ public: TxIDRole, /** Transaction hash */ TxHashRole, + /** Transaction data, hex-encoded */ + TxHexRole, /** Is transaction confirmed? */ ConfirmedRole, /** Formatted amount, without brackets when unconfirmed */ |