We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8862ce1 commit 72114a9Copy full SHA for 72114a9
1 file changed
rust/main/lander/src/adapter/core.rs
@@ -115,12 +115,12 @@ pub trait AdaptsChain: Send + Sync {
115
todo!()
116
}
117
118
- /// How often to poll for txs that need to be reprocessed
+ /// How often to poll for payloads that need to be reprocessed
119
fn reprocess_payloads_poll_rate(&self) -> Option<Duration> {
120
None
121
122
123
- /// Get a list of txs that need to be reprocessed
+ /// Get a list of payloads that need to be reprocessed
124
async fn get_reprocess_payloads(&self) -> Result<Vec<FullPayload>, LanderError> {
125
Ok(Vec::new())
126
0 commit comments