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.
2 parents a82065a + 6dd9585 commit 651e81dCopy full SHA for 651e81d
ton-http-api/src/converters/common.hpp
@@ -181,6 +181,11 @@ inline schemas::v2::AccountState Convert(const tonlib_api::object_ptr<tonlib_api
181
res.description = val.description_;
182
result.emplace<schemas::v2::AccountStatePChan>(res);
183
},
184
+ [&](const tonlib_api::uninited_accountState& val) {
185
+ schemas::v2::AccountStateUninited res;
186
+ res.frozen_hash = types::ton_hash{val.frozen_hash_};
187
+ result.emplace<schemas::v2::AccountStateUninited>(res);
188
+ },
189
[&](const auto&) { LOG_ERROR() << "Unsupported account state type: " << value->get_id(); }
190
)
191
);
0 commit comments