We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 797d04b commit 1209645Copy full SHA for 1209645
main.cpp
@@ -125,17 +125,13 @@ void Options::askConf() {
125
126
if (_mode == "Solo") {
127
std::vector<uint8_t> spk;
128
- std::cout << "Payout address (P2PKH or P2SH): ";
+ std::cout << "Payout address: ";
129
std::cin >> value;
130
setPayoutAddress(value);
131
if (_payoutAddressFormat == AddressFormat::INVALID) {
132
std::cerr << "Invalid payout address!" << std::endl;
133
_stopConfig();
134
}
135
- else if (_payoutAddressFormat == AddressFormat::BECH32) {
136
- std::cout << "Sorry, Bech32 addresses are currently not supported." << std::endl;
137
- _stopConfig();
138
- }
139
140
file << "PayoutAddress = " << _payoutAddress << std::endl;
141
0 commit comments