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

Remove unused priority_broadcast_receivers

This commit is contained in:
SpyCheese 2024-02-19 14:21:15 +03:00
parent 747b24aa18
commit e575d27302
17 changed files with 16 additions and 124 deletions

View file

@ -46,7 +46,6 @@ class BroadcastSimple : public td::ListNode {
td::uint32 date_;
td::BufferSlice signature_;
bool is_valid_{false};
bool is_ours_{false};
OverlayImpl *overlay_;
@ -64,7 +63,7 @@ class BroadcastSimple : public td::ListNode {
public:
BroadcastSimple(Overlay::BroadcastHash broadcast_hash, PublicKey source, std::shared_ptr<Certificate> cert,
td::uint32 flags, td::BufferSlice data, td::uint32 date, td::BufferSlice signature, bool is_valid,
OverlayImpl *overlay, adnl::AdnlNodeIdShort src_peer_id, bool is_ours = false)
OverlayImpl *overlay, adnl::AdnlNodeIdShort src_peer_id)
: broadcast_hash_(broadcast_hash)
, source_(std::move(source))
, cert_(std::move(cert))
@ -73,7 +72,6 @@ class BroadcastSimple : public td::ListNode {
, date_(date)
, signature_(std::move(signature))
, is_valid_(is_valid)
, is_ours_(is_ours)
, overlay_(overlay)
, src_peer_id_(src_peer_id) {
}