Skip to content

Commit ffb1dd0

Browse files
Fixed send boc to external endpoints logging
1 parent 3699a61 commit ffb1dd0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ton-http-api/src/handlers/send/SendBocHandler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ td::Result<ton_http::schemas::v2::SendBocResult> ton_http::handlers::SendBocHand
3838
}
3939
return result.move_as_error();
4040
}
41-
if (auto external_send_success = SendBocToExternalEndpoints(request)) {
41+
if (auto external_send_success = SendBocToExternalEndpoints(request); !external_send_success) {
4242
LOG_WARNING_TO(*logger_) << "Failed to send BOC to some of external endpoints";
4343
}
4444
if (!return_hash_) {

0 commit comments

Comments
 (0)