1
0
Fork 0
forked from lthn/blockchain

fixed typo

This commit is contained in:
cryptozoidberg 2025-06-19 14:35:11 +04:00
parent 90a4a68eb5
commit 2bab917700
No known key found for this signature in database
GPG key ID: 2E10CC61CAC8F36D

View file

@ -604,8 +604,9 @@ namespace plain_wallet
{
PLAIN_WALLET_BEGIN_TRY_ENTRY();
GET_INSTANCE_PTR(inst_ptr);
return inst_ptr->gwm.invoke(h, params);
tools::sanitize_utf8(params);
std::string res = inst_ptr->gwm.invoke(h, params);
tools::sanitize_utf8(res);
return res;
PLAIN_WALLET_CATCH();
}