| 82 | |
| 83 | #[derive(Serialize, Deserialize, Eq, PartialEq, Clone)] |
| 84 | pub struct BitVMClientPublicData { |
| 85 | pub version: u32, |
| 86 | pub peg_in_graphs: Vec<PegInGraph>, |
| 87 | pub peg_out_graphs: Vec<PegOutGraph>, |
| 88 | } |
| 89 | |
| 90 | impl BitVMClientPublicData { |
| 91 | pub fn graph_mut(&mut self, graph_id: &GraphId) -> &mut dyn BaseGraph { |
nothing calls this directly
no outgoing calls
no test coverage detected