File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
mithril-common/src/chain_reader Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ impl PallasChainReader {
50
50
}
51
51
52
52
/// Intersects the point of the chain with the given point.
53
- async fn intersect_point ( & mut self , point : & ChainPoint ) -> StdResult < ( ) > {
53
+ async fn find_intersect_point ( & mut self , point : & ChainPoint ) -> StdResult < ( ) > {
54
54
let client = self . get_client ( ) . await ?;
55
55
let chainsync = client. chainsync ( ) ;
56
56
@@ -99,7 +99,7 @@ impl Drop for PallasChainReader {
99
99
#[ async_trait]
100
100
impl ChainBlockReader for PallasChainReader {
101
101
async fn set_chain_point ( & mut self , point : & ChainPoint ) -> StdResult < ( ) > {
102
- self . intersect_point ( point) . await
102
+ self . find_intersect_point ( point) . await
103
103
}
104
104
105
105
async fn get_next_chain_block ( & mut self ) -> StdResult < Option < ChainBlockNextAction > > {
You can’t perform that action at this time.
0 commit comments