1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00

Add logs add-collator

This commit is contained in:
SpyCheese 2024-12-11 16:07:48 +03:00
parent 50ee01557f
commit 160b539eaa
2 changed files with 8 additions and 4 deletions

View file

@ -1607,7 +1607,9 @@ td::Status AddCollatorQuery::send() {
td::Status AddCollatorQuery::receive(td::BufferSlice data) {
TRY_RESULT_PREFIX(f, ton::fetch_tl_object<ton::ton_api::engine_validator_success>(data.as_slice(), true),
"received incorrect answer: ");
td::TerminalIO::out() << "successfully added collator\n";
td::TerminalIO::out() << "successfully added collator for shard " << shard_.to_str() << "\n";
td::TerminalIO::out() << "ADNL ID = " << adnl_id_.bits256_value().to_hex() << " (" << adnl_id_.bits256_value()
<< ")\n";
return td::Status::OK();
}
@ -1627,7 +1629,9 @@ td::Status DelCollatorQuery::send() {
td::Status DelCollatorQuery::receive(td::BufferSlice data) {
TRY_RESULT_PREFIX(f, ton::fetch_tl_object<ton::ton_api::engine_validator_success>(data.as_slice(), true),
"received incorrect answer: ");
td::TerminalIO::out() << "successfully removed collator\n";
td::TerminalIO::out() << "successfully removed collator for shard " << shard_.to_str() << "\n";
td::TerminalIO::out() << "ADNL ID = " << adnl_id_.bits256_value().to_hex() << " (" << adnl_id_.bits256_value()
<< ")\n";
return td::Status::OK();
}