pub async fn is_l1_to_l2_message_ready<N>(
node: &N,
l1_to_l2_message_hash: &Fr,
) -> Result<bool, Error>where
N: AztecNode,Expand description
Check whether an L1-to-L2 message is ready for consumption on L2.
A message is ready when its checkpoint number is ≤ the latest block’s checkpoint number.
Mirrors TS isL1ToL2MessageReady(node, l1ToL2MessageHash).