We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a382fd commit 5f0c285Copy full SHA for 5f0c285
src/sources/eth.rs
@@ -55,7 +55,7 @@ impl gasket::framework::Worker<Stage> for Worker {
55
let event = ChainEvent::Apply(
56
// TODO(p): add support multi chain Point
57
pallas::network::miniprotocols::Point::Origin,
58
- Record::Ethereum(ethereum::Record::ParsedBlock(block)),
+ Record::Ethereum(ethereum::Record::ParsedBlock(Box::new(block))),
59
);
60
stage.output.send(event.into()).await.or_panic()?;
61
}
0 commit comments