Skip to content

Commit

Permalink
fix sendtoblsctaddress
Browse files Browse the repository at this point in the history
  • Loading branch information
alex v committed Dec 15, 2024
1 parent b573089 commit 877ae8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/blsct/wallet/rpc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ RPCHelpMan sendtoblsctaddress()
if (!request.params[2].isNull() && !request.params[2].get_str().empty())
sMemo = request.params[2].get_str();

const std::string address = request.params[1].get_str();
const std::string address = request.params[0].get_str();

const bool verbose{request.params[3].isNull() ? false : request.params[10].get_bool()};

Expand Down

0 comments on commit 877ae8b

Please sign in to comment.