diff --git a/CHANGELOG.md b/CHANGELOG.md
index 746556ece..885e7198c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,6 +11,10 @@ before 1.0).
### Fixed
+- **Unreachable I2P stays out of addrman:** without `--i2p-sam`, an addrv2
+ I2P row is relayed and not stored. `getnodeaddresses` `network=i2p` is
+ empty. Core `p2p_addrv2_relay`.
+
- **Orphan parent GETDATA flush cap is 100:** Core
`MAX_PEER_TX_REQUEST_IN_FLIGHT`. A 25-tx ancestor package's missing
parents fit one GetData (was 16).
diff --git a/crates/rbitcoin-net/src/peers.rs b/crates/rbitcoin-net/src/peers.rs
index 11564850b..4a1aaa140 100644
--- a/crates/rbitcoin-net/src/peers.rs
+++ b/crates/rbitcoin-net/src/peers.rs
@@ -1160,6 +1160,8 @@ pub struct PeerHub {
/// Clearnet P2P bind (not onion-only loopback). Needed to gossip `--external-ip`.
clearnet_listen: AtomicBool,
cjdns_reachable: AtomicBool,
+ /// Core `-i2psam`: I2P rows may enter addrman. Off, they are still relayed.
+ i2p_reachable: AtomicBool,
asmap: Mutex