Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kdimentionaltree committed Dec 25, 2024
1 parent 2b1dcd7 commit d143f6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ton-http-api/tonlib_postprocessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ TonlibWorkerResponse TonlibPostProcessor::process_getAddressBalance(const std::s
}

auto result = res.move_as_ok();
auto balance = std::to_string(result->balance_ < 0 ? 0 : result->balance_) + "\"";
auto balance = std::to_string(result->balance_ < 0 ? 0 : result->balance_);
return TonlibWorkerResponse{true, nullptr, "\"" +balance + "\"", std::nullopt};
}
TonlibWorkerResponse TonlibPostProcessor::process_getAddressState(const std::string& address, td::Result<tonlib_api::raw_getAccountState::ReturnType>&& res) const {
Expand Down

0 comments on commit d143f6e

Please sign in to comment.