Skip to content

Commit

Permalink
Ignore Firo non-Zcash nodes in Zebra's address book
Browse files Browse the repository at this point in the history
  • Loading branch information
teor2345 authored Mar 23, 2023
1 parent fc32e68 commit 03e0c27
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions zebra-network/src/peer/priority.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,14 @@ fn address_is_valid_for_outbound_connections(
return Err(
"invalid peer port: port is for Regtest, but Zebra does not support that network",
);
} else if [16125, 26125].contains(&peer_addr.port()) {
// 16125/26125 is used by Flux/ZelCash, which uses the same network magic numbers as Zcash,
// so we have to reject it by port
} else if [16125, 26125, 8168, 18168, 38168].contains(&peer_addr.port()) {
// 16125/26125 are used by Flux/ZelCash, which uses the same network magic numbers as Zcash,
// so we have to reject it by port:
// - https://github.com/RunOnFlux/fluxd/blob/master/src/zelnode/zelnodeconfig.cpp#L76
// - https://github.com/RunOnFlux/fluxd/blob/master/src/init.cpp#L409
// 8168/18168/38168 are used by Firo/Zcoin, which uses the same network magic numbers as Zcash,
// so we have to reject it by port:
// - https://github.com/firoorg/firo/blob/master/src/chainparamsseeds.h
return Err("invalid peer port: port is for a non-Zcash network");
}
}
Expand Down

0 comments on commit 03e0c27

Please sign in to comment.