fuel-core-wasm-executor 0.47.1

Fuel Block WASM version of the Executor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use fuel_core_executor::ports::PreconfirmationSenderPort;
use fuel_core_types::services::preconfirmation::Preconfirmation;

pub struct PreconfirmationSender;

impl PreconfirmationSenderPort for PreconfirmationSender {
    fn try_send(&self, _: Vec<Preconfirmation>) -> Vec<Preconfirmation> {
        vec![]
    }

    async fn send(&self, _: Vec<Preconfirmation>) {}
}