MCPcopy Create free account
hub / github.com/ChainSafe/Delorean-Protocol / drop

Method drop

fendermint/testing/materializer/src/docker/network.rs:104–118  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

102
103impl Drop for DockerNetwork {
104 fn drop(&mut self) {
105 if self.network.keep {
106 return;
107 }
108 if self
109 .dropper
110 .send(DropCommand::DropNetwork(self.network.name.clone()))
111 .is_err()
112 {
113 tracing::error!(
114 network_name = self.network.name,
115 "dropper no longer listening"
116 );
117 }
118 }
119}
120
121#[cfg(test)]

Callers

nothing calls this directly

Calls 1

sendMethod · 0.80

Tested by

no test coverage detected