diff options
| author | Glenn Willen <[email protected]> | 2020-05-29 01:25:04 -0700 |
|---|---|---|
| committer | Glenn Willen <[email protected]> | 2020-06-19 02:20:04 -0700 |
| commit | a6cb0b0c29d327d01aebb98b0504f317eb19c3dc (patch) | |
| tree | bb6310a7677bb704e256521eaae23c48d5586817 /src/qt/bitcoingui.cpp | |
| parent | FillPSBT: report number of inputs signed (or would sign) (diff) | |
| download | discoin-a6cb0b0c29d327d01aebb98b0504f317eb19c3dc.tar.xz discoin-a6cb0b0c29d327d01aebb98b0504f317eb19c3dc.zip | |
[gui] PSBT Operations Dialog (sign & broadcast)
Add a "PSBT Operations" dialog, reached from the "Load PSBT..." menu
item, giving options to sign or broadcast the loaded PSBT as
appropriate, as well as copying the result to the clipboard or saving
it to a file.
Diffstat (limited to 'src/qt/bitcoingui.cpp')
| -rw-r--r-- | src/qt/bitcoingui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 1092cdd75..70f1d2efd 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -321,7 +321,7 @@ void BitcoinGUI::createActions() signMessageAction->setStatusTip(tr("Sign messages with your Bitcoin addresses to prove you own them")); verifyMessageAction = new QAction(tr("&Verify message..."), this); verifyMessageAction->setStatusTip(tr("Verify messages to ensure they were signed with specified Bitcoin addresses")); - m_load_psbt_action = new QAction(tr("Load PSBT..."), this); + m_load_psbt_action = new QAction(tr("&Load PSBT from file..."), this); m_load_psbt_action->setStatusTip(tr("Load Partially Signed Bitcoin Transaction")); openRPCConsoleAction = new QAction(tr("Node window"), this); |