MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / coinControlButtonClicked

Method coinControlButtonClicked

src/qt/sendcoinsdialog.cpp:914–919  ·  view source on GitHub ↗

Coin Control: button inputs -> show actual coin control dialog

Source from the content-addressed store, hash-verified

912
913// Coin Control: button inputs -> show actual coin control dialog
914void SendCoinsDialog::coinControlButtonClicked()
915{
916 auto dlg = new CoinControlDialog(*m_coin_control, model, platformStyle);
917 connect(dlg, &QDialog::finished, this, &SendCoinsDialog::coinControlUpdateLabels);
918 GUIUtil::ShowModalDialogAsynchronously(dlg);
919}
920
921// Coin Control: checkbox custom change address
922#if (QT_VERSION >= QT_VERSION_CHECK(6, 7, 0))

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected