Revert "Ignore Firo non-Zcash nodes in Zebra's address book (#6398)" (#6477)

This reverts commit 92e2f5205c.
This commit is contained in:
teor 2023-04-12 03:21:26 +10:00 committed by GitHub
parent 312a473d33
commit 3d11a09f28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 8 deletions

View File

@ -123,14 +123,9 @@ 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, 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
} 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
return Err("invalid peer port: port is for a non-Zcash network");
}
}