1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2020 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

//! Contains a nonce provider that returns a given constant nonce.

use crate::providers::{NonceProvider, NonceProviderBuilder};

impl NonceProviderBuilder for u64 {
    type Provider = u64;

    fn finish(self) -> u64 {
        self
    }
}

/// A nonce provider that returns constant nonces.
impl NonceProvider for u64 {
    type Builder = u64;
    type Error = std::convert::Infallible;

    fn nonce(&self, _: &[u8], _: f64) -> Result<u64, Self::Error> {
        Ok(*self)
    }
}