aboutsummaryrefslogtreecommitdiff
path: root/src/qt/walletview.cpp
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-05-27 10:15:05 -0400
committerMarcoFalke <falke.marco@gmail.com>2020-05-27 12:37:08 -0400
commitfab893e0caf510d4836a20194892ef9c71426c51 (patch)
treeb1da864ab953501de224c2874f30b65754e4703b /src/qt/walletview.cpp
parent793e0ff22cbace2a0fbe1e4a2e88a7bc6bf44502 (diff)
downloadbitcoin-fab893e0caf510d4836a20194892ef9c71426c51.tar.xz
doc: Fix unrelated typos reported by codespell
Diffstat (limited to 'src/qt/walletview.cpp')
-rw-r--r--src/qt/walletview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/walletview.cpp b/src/qt/walletview.cpp
index c4e607990a..09c63fb948 100644
--- a/src/qt/walletview.cpp
+++ b/src/qt/walletview.cpp
@@ -256,7 +256,7 @@ void WalletView::gotoLoadPSBT()
TransactionError result = BroadcastTransaction(*clientModel->node().context(), tx, err_string, DEFAULT_MAX_RAW_TX_FEE_RATE.GetFeePerK(), /* relay */ true, /* wait_callback */ false);
if (result == TransactionError::OK) {
- Q_EMIT message(tr("Success"), tr("Broadcasted transaction sucessfully."), CClientUIInterface::MSG_INFORMATION | CClientUIInterface::MODAL);
+ Q_EMIT message(tr("Success"), tr("Broadcasted transaction successfully."), CClientUIInterface::MSG_INFORMATION | CClientUIInterface::MODAL);
} else {
Q_EMIT message(tr("Error"), QString::fromStdString(err_string), CClientUIInterface::MSG_ERROR);
}