Skip to content

Commit

Permalink
fix: try to use a simple solution to support ckb2023 switch
Browse files Browse the repository at this point in the history
  • Loading branch information
quake committed Jan 12, 2024
1 parent df1fa6b commit e7927f9
Showing 1 changed file with 4 additions and 18 deletions.
22 changes: 4 additions & 18 deletions src/protocols/relayer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,7 @@ impl CKBProtocolHandler for RelayProtocol {
.tx_hashes(tx_hashes.pack())
.build();
let message = packed::RelayMessage::new_builder().set(content).build();
let protocol_id = if nc.ckb2023() {
SupportProtocols::RelayV3.protocol_id()
} else {
SupportProtocols::RelayV2.protocol_id()
};
if let Err(err) = nc.send_message(protocol_id, peer, message.as_bytes()) {
if let Err(err) = nc.send_message_to(peer, message.as_bytes()) {
warn!(
"RelayProtocol failed to send RelayTransactionHashes message to peer={} since {:?}",
peer, err
Expand Down Expand Up @@ -207,13 +202,6 @@ impl CKBProtocolHandler for RelayProtocol {
CHECK_PENDING_TXS_TOKEN => {
// we check pending txs every 2 seconds, if the timestamp of the pending txs is updated in the last minute
// and connected relay protocol peers is empty, we try to open the protocol and broadcast the pending txs

let protocol_id = if nc.ckb2023() {
SupportProtocols::RelayV3.protocol_id()
} else {
SupportProtocols::RelayV2.protocol_id()
};

if self
.pending_txs
.read()
Expand All @@ -223,7 +211,7 @@ impl CKBProtocolHandler for RelayProtocol {
{
let p2p_control = nc.p2p_control().expect("p2p_control should be exist");
for peer in self.connected_peers.get_peers_index() {
if let Err(err) = p2p_control.open_protocol(peer, protocol_id) {
if let Err(err) = p2p_control.open_protocol(peer, nc.protocol_id()) {
warn!(
"RelayProtocol failed to open protocol to peer={} since {:?}",
peer, err
Expand All @@ -246,9 +234,7 @@ impl CKBProtocolHandler for RelayProtocol {
let message =
packed::RelayMessage::new_builder().set(content).build();

if let Err(err) =
nc.send_message(protocol_id, peer, message.as_bytes())
{
if let Err(err) = nc.send_message_to(peer, message.as_bytes()) {
warn!(
"RelayProtocol failed to send RelayTransactionHashes message to peer={} since {:?}",
peer, err
Expand All @@ -266,7 +252,7 @@ impl CKBProtocolHandler for RelayProtocol {
let _ = nc
.p2p_control()
.expect("p2p_control should be exist")
.close_protocol(peer, protocol_id);
.close_protocol(peer, nc.protocol_id());
}
}
}
Expand Down

0 comments on commit e7927f9

Please sign in to comment.