Skip to content

Commit

Permalink
fix(plasma): generic bound rename
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell committed Apr 28, 2024
1 parent 99331e9 commit 698e954
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/plasma/src/plasma.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ where
}

#[async_trait]
impl<C, PIF, I> DataAvailabilityProvider for PlasmaDataSource<C, PIF, I>
impl<C, F, I> DataAvailabilityProvider for PlasmaDataSource<C, F, I>
where
C: ChainProvider + Send + Clone + Debug + Sync,
PIF: PlasmaInputFetcher<C> + Clone + Debug + Send + Sync,
F: PlasmaInputFetcher<C> + Clone + Debug + Send + Sync,
I: Iterator<Item = Bytes> + Send + Clone + Debug + Sync,
{
type Item = Bytes;
type DataIter = PlasmaSource<C, PIF, I>;
type DataIter = PlasmaSource<C, F, I>;

async fn open_data(&self, block_ref: &BlockInfo, _: Address) -> Result<Self::DataIter> {
Ok(PlasmaSource::new(
Expand Down

0 comments on commit 698e954

Please sign in to comment.