From adbd9f163adf68c95e75efced8d403d98dfb49ca Mon Sep 17 00:00:00 2001 From: Andrew Poelstra Date: Thu, 15 Apr 2021 18:04:01 +0000 Subject: [PATCH] qt: fix PSBT/PSET change from 4839db857d5fbe2a27ebabb7bf5bf9d59ef244e9 --- src/qt/bitcoingui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 072be9fe03..31c2ffcc31 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -323,9 +323,9 @@ void BitcoinGUI::createActions() signMessageAction->setStatusTip(tr("Sign messages with your %1 addresses to prove you own them").arg("Liquid")); verifyMessageAction = new QAction(tr("&Verify message..."), this); verifyMessageAction->setStatusTip(tr("Verify messages to ensure they were signed with specified %1 addresses").arg("Liquid")); - m_load_psbt_action = new QAction(tr("&Load PSBT from file..."), this); + m_load_psbt_action = new QAction(tr("&Load PSET from file..."), this); m_load_psbt_action->setStatusTip(tr("Load Partially Signed Elements Transaction")); - m_load_psbt_clipboard_action = new QAction(tr("Load PSBT from clipboard..."), this); + m_load_psbt_clipboard_action = new QAction(tr("Load PSET from clipboard..."), this); m_load_psbt_clipboard_action->setStatusTip(tr("Load Partially Signed Elements Transaction from clipboard")); openRPCConsoleAction = new QAction(tr("Node window"), this);