diff --git a/zebra-state/src/service.rs b/zebra-state/src/service.rs index 1a21ce95..623fbca1 100644 --- a/zebra-state/src/service.rs +++ b/zebra-state/src/service.rs @@ -1605,12 +1605,19 @@ impl Service for ReadStateService { )?; // The work is done in the future. - timer.finish(module_path!(), line!(), "ReadRequest::UnspentBestChainUtxo"); + timer.finish( + module_path!(), + line!(), + "ReadRequest::CheckBestChainTipNullifiersAndAnchors", + ); Ok(ReadResponse::ValidBestChainTipNullifiersAndAnchors) }) }) - .map(|join_result| join_result.expect("panic in ReadRequest::UnspentBestChainUtxo")) + .map(|join_result| { + join_result + .expect("panic in ReadRequest::CheckBestChainTipNullifiersAndAnchors") + }) .boxed() }