1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00
This commit is contained in:
Marat 2025-01-27 08:20:20 +01:00 committed by GitHub
parent 7d9ef6e0bf
commit 99b78f78d7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 2 deletions

View file

@ -115,7 +115,7 @@ td::Result<GetMethodParams> decode_get_method_params(const char* json) {
return td::Status::Error("EC must be of type Object");
}
td::StringBuilder ec_builder;
auto ec_obj = ec_field.get_object();
auto& ec_obj = ec_field.get_object();
bool is_first = true;
for (auto &field_value : ec_obj) {
auto currency_id = field_value.first;