(&self, f: &mut Formatter<'_>)
| 41 | |
| 42 | impl Display for QuorumReachedEvent { |
| 43 | fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { |
| 44 | write!( |
| 45 | f, |
| 46 | "QuorumReachedEvent<height: {}, checkpoint: {}, quorum_weight: {}>", |
| 47 | self.height, |
| 48 | hex::encode(&self.obj_hash), |
| 49 | self.quorum_weight |
| 50 | ) |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | /// The collection of items for the bottom up checkpoint submission |
nothing calls this directly
no outgoing calls
no test coverage detected