Skip to content

Commit 5eaaef8

Browse files
authored
Merge branch 'master' into feature/pre-confirmations/integrate-task-into-poa
2 parents 5a4fc12 + 17e2529 commit 5eaaef8

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

crates/fuel-core/src/service/adapters/consensus_module/poa/pre_confirmation_signature/tx_receiver.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ impl Default for PreconfirmationsReceiver {
2020
}
2121
}
2222

23+
// TODO(#2739): Remove when integrated
24+
// link: https://github.com/FuelLabs/fuel-core/issues/2739
25+
#[allow(dead_code)]
2326
impl PreconfirmationsReceiver {
2427
pub fn new(receiver: mpsc::Receiver<Vec<Preconfirmation>>) -> Self {
2528
let capacity = receiver.capacity();

crates/services/consensus_module/poa/src/pre_confirmation_signature_service.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ pub mod tx_receiver;
3232
#[cfg(test)]
3333
pub mod tests;
3434

35+
// TODO(#2739): Remove when integrated
36+
// link: https://github.com/FuelLabs/fuel-core/issues/2739
37+
#[allow(dead_code)]
3538
pub struct PreConfirmationSignatureTask<
3639
TxReceiver,
3740
Broadcast,

crates/services/consensus_module/poa/src/pre_confirmation_signature_service/parent_signature.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
use super::*;
22
use std::future::Future;
33

4+
// TODO(#2739): Remove when integrated
5+
// link: https://github.com/FuelLabs/fuel-core/issues/2739
6+
#[allow(dead_code)]
47
/// Used to sign the delegate keys, proving that the parent key approves of the delegation
58
pub trait ParentSignature: Send {
69
type Signature: serde::Serialize;

0 commit comments

Comments
 (0)