(
&self,
_view: &ViewState,
_from_seq: u64,
)
| 921 | } |
| 922 | |
| 923 | fn iter_changes( |
| 924 | &self, |
| 925 | _view: &ViewState, |
| 926 | _from_seq: u64, |
| 927 | ) -> Result< |
| 928 | Box<dyn Iterator<Item = Result<(u64, NodeId, Merkle), PristineError>> + '_>, |
| 929 | PristineError, |
| 930 | > { |
| 931 | Ok(Box::new(std::iter::empty())) |
| 932 | } |
| 933 | } |
| 934 | |
| 935 | // DetectContext Tests |
no outgoing calls
no test coverage detected