mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 01:17:36 +00:00
Initial code to handle messages from processors
This commit is contained in:
parent
cc531d630e
commit
78d5372fb7
6 changed files with 137 additions and 35 deletions
|
@ -11,6 +11,7 @@ use std::{
|
||||||
};
|
};
|
||||||
|
|
||||||
use zeroize::Zeroizing;
|
use zeroize::Zeroizing;
|
||||||
|
use rand_core::OsRng;
|
||||||
|
|
||||||
use ciphersuite::{group::ff::Field, Ciphersuite, Ristretto};
|
use ciphersuite::{group::ff::Field, Ciphersuite, Ristretto};
|
||||||
|
|
||||||
|
@ -22,7 +23,7 @@ use tokio::{sync::RwLock, time::sleep};
|
||||||
use ::tributary::{ReadWrite, Block, Tributary, TributaryReader};
|
use ::tributary::{ReadWrite, Block, Tributary, TributaryReader};
|
||||||
|
|
||||||
mod tributary;
|
mod tributary;
|
||||||
use crate::tributary::{TributarySpec, Transaction};
|
use crate::tributary::{TributarySpec, SignData, Transaction};
|
||||||
|
|
||||||
mod db;
|
mod db;
|
||||||
use db::MainDb;
|
use db::MainDb;
|
||||||
|
@ -30,6 +31,8 @@ use db::MainDb;
|
||||||
mod p2p;
|
mod p2p;
|
||||||
pub use p2p::*;
|
pub use p2p::*;
|
||||||
|
|
||||||
|
use processor_messages::{key_gen, sign, coordinator, ProcessorMessage};
|
||||||
|
|
||||||
pub mod processor;
|
pub mod processor;
|
||||||
use processor::Processor;
|
use processor::Processor;
|
||||||
|
|
||||||
|
@ -67,7 +70,7 @@ async fn add_tributary<D: Db, P: P2p>(
|
||||||
spec: TributarySpec,
|
spec: TributarySpec,
|
||||||
) -> TributaryReader<D, Transaction> {
|
) -> TributaryReader<D, Transaction> {
|
||||||
let tributary = Tributary::<_, Transaction, _>::new(
|
let tributary = Tributary::<_, Transaction, _>::new(
|
||||||
// TODO: Use a db on a distinct volume
|
// TODO2: Use a db on a distinct volume
|
||||||
db,
|
db,
|
||||||
spec.genesis(),
|
spec.genesis(),
|
||||||
spec.start_time(),
|
spec.start_time(),
|
||||||
|
@ -91,7 +94,7 @@ async fn add_tributary<D: Db, P: P2p>(
|
||||||
pub async fn scan_substrate<D: Db, Pro: Processor>(
|
pub async fn scan_substrate<D: Db, Pro: Processor>(
|
||||||
db: D,
|
db: D,
|
||||||
key: Zeroizing<<Ristretto as Ciphersuite>::F>,
|
key: Zeroizing<<Ristretto as Ciphersuite>::F>,
|
||||||
mut processor: Pro,
|
processor: Pro,
|
||||||
serai: Serai,
|
serai: Serai,
|
||||||
) {
|
) {
|
||||||
let mut db = substrate::SubstrateDb::new(db);
|
let mut db = substrate::SubstrateDb::new(db);
|
||||||
|
@ -102,13 +105,13 @@ pub async fn scan_substrate<D: Db, Pro: Processor>(
|
||||||
&mut db,
|
&mut db,
|
||||||
&key,
|
&key,
|
||||||
create_new_tributary,
|
create_new_tributary,
|
||||||
&mut processor,
|
&processor,
|
||||||
&serai,
|
&serai,
|
||||||
&mut last_substrate_block,
|
&mut last_substrate_block,
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
{
|
{
|
||||||
// TODO: Should this use a notification system for new blocks?
|
// TODO2: Should this use a notification system for new blocks?
|
||||||
// Right now it's sleeping for half the block time.
|
// Right now it's sleeping for half the block time.
|
||||||
Ok(()) => sleep(Duration::from_secs(3)).await,
|
Ok(()) => sleep(Duration::from_secs(3)).await,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
|
@ -124,7 +127,7 @@ pub async fn scan_tributaries<D: Db, Pro: Processor, P: P2p>(
|
||||||
raw_db: D,
|
raw_db: D,
|
||||||
key: Zeroizing<<Ristretto as Ciphersuite>::F>,
|
key: Zeroizing<<Ristretto as Ciphersuite>::F>,
|
||||||
p2p: P,
|
p2p: P,
|
||||||
mut processor: Pro,
|
processor: Pro,
|
||||||
tributaries: Arc<RwLock<HashMap<[u8; 32], ActiveTributary<D, P>>>>,
|
tributaries: Arc<RwLock<HashMap<[u8; 32], ActiveTributary<D, P>>>>,
|
||||||
) {
|
) {
|
||||||
let mut tributary_readers = vec![];
|
let mut tributary_readers = vec![];
|
||||||
|
@ -160,7 +163,7 @@ pub async fn scan_tributaries<D: Db, Pro: Processor, P: P2p>(
|
||||||
tributary::scanner::handle_new_blocks::<_, _>(
|
tributary::scanner::handle_new_blocks::<_, _>(
|
||||||
&mut tributary_db,
|
&mut tributary_db,
|
||||||
&key,
|
&key,
|
||||||
&mut processor,
|
&processor,
|
||||||
spec,
|
spec,
|
||||||
reader,
|
reader,
|
||||||
)
|
)
|
||||||
|
@ -168,7 +171,7 @@ pub async fn scan_tributaries<D: Db, Pro: Processor, P: P2p>(
|
||||||
}
|
}
|
||||||
|
|
||||||
// Sleep for half the block time
|
// Sleep for half the block time
|
||||||
// TODO: Should we define a notification system for when a new block occurs?
|
// TODO2: Should we define a notification system for when a new block occurs?
|
||||||
sleep(Duration::from_secs((Tributary::<D, Transaction, P>::block_time() / 2).into())).await;
|
sleep(Duration::from_secs((Tributary::<D, Transaction, P>::block_time() / 2).into())).await;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -221,7 +224,7 @@ pub async fn handle_p2p<D: Db, P: P2p>(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Rate limit this
|
// TODO2: Rate limit this
|
||||||
P2pMessageKind::Heartbeat(genesis) => {
|
P2pMessageKind::Heartbeat(genesis) => {
|
||||||
let tributaries = tributaries.read().await;
|
let tributaries = tributaries.read().await;
|
||||||
let Some(tributary) = tributaries.get(&genesis) else {
|
let Some(tributary) = tributaries.get(&genesis) else {
|
||||||
|
@ -310,6 +313,110 @@ pub async fn handle_p2p<D: Db, P: P2p>(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(clippy::type_complexity)]
|
||||||
|
pub async fn handle_processors<D: Db, Pro: Processor, P: P2p>(
|
||||||
|
key: Zeroizing<<Ristretto as Ciphersuite>::F>,
|
||||||
|
mut processor: Pro,
|
||||||
|
tributaries: Arc<RwLock<HashMap<[u8; 32], ActiveTributary<D, P>>>>,
|
||||||
|
) {
|
||||||
|
let pub_key = Ristretto::generator() * key.deref();
|
||||||
|
|
||||||
|
loop {
|
||||||
|
let msg = processor.recv().await;
|
||||||
|
|
||||||
|
// TODO: We need (ValidatorSet or key) to genesis hash
|
||||||
|
let genesis = [0; 32];
|
||||||
|
|
||||||
|
let tx = match msg.msg {
|
||||||
|
ProcessorMessage::KeyGen(msg) => match msg {
|
||||||
|
key_gen::ProcessorMessage::Commitments { id, commitments } => {
|
||||||
|
Some(Transaction::DkgCommitments(id.attempt, commitments, Transaction::empty_signed()))
|
||||||
|
}
|
||||||
|
key_gen::ProcessorMessage::Shares { id, shares } => {
|
||||||
|
Some(Transaction::DkgShares(id.attempt, shares, Transaction::empty_signed()))
|
||||||
|
}
|
||||||
|
// TODO
|
||||||
|
key_gen::ProcessorMessage::GeneratedKeyPair { .. } => todo!(),
|
||||||
|
},
|
||||||
|
ProcessorMessage::Sign(msg) => match msg {
|
||||||
|
sign::ProcessorMessage::Preprocess { id, preprocess } => {
|
||||||
|
Some(Transaction::SignPreprocess(SignData {
|
||||||
|
plan: id.id,
|
||||||
|
attempt: id.attempt,
|
||||||
|
data: preprocess,
|
||||||
|
signed: Transaction::empty_signed(),
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
sign::ProcessorMessage::Share { id, share } => Some(Transaction::SignShare(SignData {
|
||||||
|
plan: id.id,
|
||||||
|
attempt: id.attempt,
|
||||||
|
data: share,
|
||||||
|
signed: Transaction::empty_signed(),
|
||||||
|
})),
|
||||||
|
// TODO
|
||||||
|
sign::ProcessorMessage::Completed { .. } => todo!(),
|
||||||
|
},
|
||||||
|
ProcessorMessage::Coordinator(msg) => match msg {
|
||||||
|
// TODO
|
||||||
|
coordinator::ProcessorMessage::SubstrateBlockAck { .. } => todo!(),
|
||||||
|
coordinator::ProcessorMessage::BatchPreprocess { id, preprocess } => {
|
||||||
|
Some(Transaction::BatchPreprocess(SignData {
|
||||||
|
plan: id.id,
|
||||||
|
attempt: id.attempt,
|
||||||
|
data: preprocess,
|
||||||
|
signed: Transaction::empty_signed(),
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
coordinator::ProcessorMessage::BatchShare { id, share } => {
|
||||||
|
Some(Transaction::BatchShare(SignData {
|
||||||
|
plan: id.id,
|
||||||
|
attempt: id.attempt,
|
||||||
|
data: share.to_vec(),
|
||||||
|
signed: Transaction::empty_signed(),
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
},
|
||||||
|
ProcessorMessage::Substrate(msg) => match msg {
|
||||||
|
// TODO
|
||||||
|
processor_messages::substrate::ProcessorMessage::Update { .. } => todo!(),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
// If this created a transaction, publish it
|
||||||
|
if let Some(mut tx) = tx {
|
||||||
|
// Get the next nonce
|
||||||
|
// let mut txn = db.txn();
|
||||||
|
// let nonce = MainDb::tx_nonce(&mut txn, msg.id, tributary);
|
||||||
|
|
||||||
|
let nonce = 0; // TODO
|
||||||
|
tx.sign(&mut OsRng, genesis, &key, nonce);
|
||||||
|
|
||||||
|
let tributaries = tributaries.read().await;
|
||||||
|
let Some(tributary) = tributaries.get(&genesis) else {
|
||||||
|
// TODO: This can happen since Substrate tells the Processor to generate commitments
|
||||||
|
// at the same time it tells the Tributary to be created
|
||||||
|
// There's no guarantee the Tributary will have been created though
|
||||||
|
panic!("processor is operating on tributary we don't have");
|
||||||
|
};
|
||||||
|
|
||||||
|
let tributary = tributary.tributary.read().await;
|
||||||
|
if tributary
|
||||||
|
.next_nonce(pub_key)
|
||||||
|
.await
|
||||||
|
.expect("we don't have a nonce, meaning we aren't a participant on this tributary") >
|
||||||
|
nonce
|
||||||
|
{
|
||||||
|
log::warn!("we've already published this transaction. this should only appear on reboot");
|
||||||
|
} else {
|
||||||
|
// We should've created a valid transaction
|
||||||
|
assert!(tributary.add_transaction(tx).await, "created an invalid transaction");
|
||||||
|
}
|
||||||
|
|
||||||
|
// txn.commit();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub async fn run<D: Db, Pro: Processor, P: P2p>(
|
pub async fn run<D: Db, Pro: Processor, P: P2p>(
|
||||||
raw_db: D,
|
raw_db: D,
|
||||||
key: Zeroizing<<Ristretto as Ciphersuite>::F>,
|
key: Zeroizing<<Ristretto as Ciphersuite>::F>,
|
||||||
|
@ -344,7 +451,7 @@ pub async fn run<D: Db, Pro: Processor, P: P2p>(
|
||||||
raw_db.clone(),
|
raw_db.clone(),
|
||||||
key.clone(),
|
key.clone(),
|
||||||
p2p.clone(),
|
p2p.clone(),
|
||||||
processor,
|
processor.clone(),
|
||||||
tributaries.clone(),
|
tributaries.clone(),
|
||||||
));
|
));
|
||||||
|
|
||||||
|
@ -353,13 +460,10 @@ pub async fn run<D: Db, Pro: Processor, P: P2p>(
|
||||||
tokio::spawn(heartbeat_tributaries(p2p.clone(), tributaries.clone()));
|
tokio::spawn(heartbeat_tributaries(p2p.clone(), tributaries.clone()));
|
||||||
|
|
||||||
// Handle P2P messages
|
// Handle P2P messages
|
||||||
// TODO: We also have to broadcast blocks once they're added
|
tokio::spawn(handle_p2p(Ristretto::generator() * key.deref(), p2p, tributaries.clone()));
|
||||||
tokio::spawn(handle_p2p(Ristretto::generator() * key.deref(), p2p, tributaries));
|
|
||||||
|
|
||||||
loop {
|
// Handle all messages from processors
|
||||||
// Handle all messages from processors
|
handle_processors(key, processor, tributaries).await;
|
||||||
todo!()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
|
|
|
@ -12,7 +12,7 @@ pub struct Message {
|
||||||
|
|
||||||
#[async_trait::async_trait]
|
#[async_trait::async_trait]
|
||||||
pub trait Processor: 'static + Send + Sync + Clone {
|
pub trait Processor: 'static + Send + Sync + Clone {
|
||||||
async fn send(&mut self, msg: CoordinatorMessage);
|
async fn send(&self, msg: CoordinatorMessage);
|
||||||
async fn recv(&mut self) -> Message;
|
async fn recv(&mut self) -> Message;
|
||||||
async fn ack(&mut self, msg: Message);
|
async fn ack(&mut self, msg: Message);
|
||||||
}
|
}
|
||||||
|
@ -29,7 +29,7 @@ impl MemProcessor {
|
||||||
|
|
||||||
#[async_trait::async_trait]
|
#[async_trait::async_trait]
|
||||||
impl Processor for MemProcessor {
|
impl Processor for MemProcessor {
|
||||||
async fn send(&mut self, msg: CoordinatorMessage) {
|
async fn send(&self, msg: CoordinatorMessage) {
|
||||||
self.0.write().await.push_back(msg)
|
self.0.write().await.push_back(msg)
|
||||||
}
|
}
|
||||||
async fn recv(&mut self) -> Message {
|
async fn recv(&mut self) -> Message {
|
||||||
|
|
|
@ -47,7 +47,7 @@ async fn handle_new_set<
|
||||||
db: &D,
|
db: &D,
|
||||||
key: &Zeroizing<<Ristretto as Ciphersuite>::F>,
|
key: &Zeroizing<<Ristretto as Ciphersuite>::F>,
|
||||||
add_new_tributary: ANT,
|
add_new_tributary: ANT,
|
||||||
processor: &mut Pro,
|
processor: &Pro,
|
||||||
serai: &Serai,
|
serai: &Serai,
|
||||||
block: &Block,
|
block: &Block,
|
||||||
set: ValidatorSet,
|
set: ValidatorSet,
|
||||||
|
@ -85,7 +85,7 @@ async fn handle_new_set<
|
||||||
|
|
||||||
async fn handle_key_gen<Pro: Processor>(
|
async fn handle_key_gen<Pro: Processor>(
|
||||||
key: &Zeroizing<<Ristretto as Ciphersuite>::F>,
|
key: &Zeroizing<<Ristretto as Ciphersuite>::F>,
|
||||||
processor: &mut Pro,
|
processor: &Pro,
|
||||||
serai: &Serai,
|
serai: &Serai,
|
||||||
block: &Block,
|
block: &Block,
|
||||||
set: ValidatorSet,
|
set: ValidatorSet,
|
||||||
|
@ -116,7 +116,7 @@ async fn handle_key_gen<Pro: Processor>(
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn handle_batch_and_burns<Pro: Processor>(
|
async fn handle_batch_and_burns<Pro: Processor>(
|
||||||
processor: &mut Pro,
|
processor: &Pro,
|
||||||
serai: &Serai,
|
serai: &Serai,
|
||||||
block: &Block,
|
block: &Block,
|
||||||
) -> Result<(), SeraiError> {
|
) -> Result<(), SeraiError> {
|
||||||
|
@ -189,6 +189,7 @@ async fn handle_batch_and_burns<Pro: Processor>(
|
||||||
serai_time: block.time().unwrap(),
|
serai_time: block.time().unwrap(),
|
||||||
coin_latest_finalized_block,
|
coin_latest_finalized_block,
|
||||||
},
|
},
|
||||||
|
network,
|
||||||
block: block.number(),
|
block: block.number(),
|
||||||
key: serai
|
key: serai
|
||||||
.get_keys(ValidatorSet { network, session: Session(0) }) // TODO2
|
.get_keys(ValidatorSet { network, session: Session(0) }) // TODO2
|
||||||
|
@ -215,7 +216,7 @@ async fn handle_block<
|
||||||
db: &mut SubstrateDb<D>,
|
db: &mut SubstrateDb<D>,
|
||||||
key: &Zeroizing<<Ristretto as Ciphersuite>::F>,
|
key: &Zeroizing<<Ristretto as Ciphersuite>::F>,
|
||||||
add_new_tributary: ANT,
|
add_new_tributary: ANT,
|
||||||
processor: &mut Pro,
|
processor: &Pro,
|
||||||
serai: &Serai,
|
serai: &Serai,
|
||||||
block: Block,
|
block: Block,
|
||||||
) -> Result<(), SeraiError> {
|
) -> Result<(), SeraiError> {
|
||||||
|
@ -283,7 +284,7 @@ pub async fn handle_new_blocks<
|
||||||
db: &mut SubstrateDb<D>,
|
db: &mut SubstrateDb<D>,
|
||||||
key: &Zeroizing<<Ristretto as Ciphersuite>::F>,
|
key: &Zeroizing<<Ristretto as Ciphersuite>::F>,
|
||||||
add_new_tributary: ANT,
|
add_new_tributary: ANT,
|
||||||
processor: &mut Pro,
|
processor: &Pro,
|
||||||
serai: &Serai,
|
serai: &Serai,
|
||||||
last_block: &mut u64,
|
last_block: &mut u64,
|
||||||
) -> Result<(), SeraiError> {
|
) -> Result<(), SeraiError> {
|
||||||
|
|
|
@ -80,13 +80,13 @@ async fn dkg_test() {
|
||||||
tributary: &Tributary<MemDb, Transaction, LocalP2p>,
|
tributary: &Tributary<MemDb, Transaction, LocalP2p>,
|
||||||
) -> (TributaryDb<MemDb>, MemProcessor) {
|
) -> (TributaryDb<MemDb>, MemProcessor) {
|
||||||
let mut scanner_db = TributaryDb(MemDb::new());
|
let mut scanner_db = TributaryDb(MemDb::new());
|
||||||
let mut processor = MemProcessor::new();
|
let processor = MemProcessor::new();
|
||||||
handle_new_blocks(&mut scanner_db, key, &mut processor, spec, &tributary.reader()).await;
|
handle_new_blocks(&mut scanner_db, key, &processor, spec, &tributary.reader()).await;
|
||||||
(scanner_db, processor)
|
(scanner_db, processor)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Instantiate a scanner and verify it has nothing to report
|
// Instantiate a scanner and verify it has nothing to report
|
||||||
let (mut scanner_db, mut processor) = new_processor(&keys[0], &spec, &tributaries[0].1).await;
|
let (mut scanner_db, processor) = new_processor(&keys[0], &spec, &tributaries[0].1).await;
|
||||||
assert!(processor.0.read().await.is_empty());
|
assert!(processor.0.read().await.is_empty());
|
||||||
|
|
||||||
// Publish the last commitment
|
// Publish the last commitment
|
||||||
|
@ -96,8 +96,7 @@ async fn dkg_test() {
|
||||||
sleep(Duration::from_secs(Tributary::<MemDb, Transaction, LocalP2p>::block_time().into())).await;
|
sleep(Duration::from_secs(Tributary::<MemDb, Transaction, LocalP2p>::block_time().into())).await;
|
||||||
|
|
||||||
// Verify the scanner emits a KeyGen::Commitments message
|
// Verify the scanner emits a KeyGen::Commitments message
|
||||||
handle_new_blocks(&mut scanner_db, &keys[0], &mut processor, &spec, &tributaries[0].1.reader())
|
handle_new_blocks(&mut scanner_db, &keys[0], &processor, &spec, &tributaries[0].1.reader()).await;
|
||||||
.await;
|
|
||||||
{
|
{
|
||||||
let mut msgs = processor.0.write().await;
|
let mut msgs = processor.0.write().await;
|
||||||
assert_eq!(msgs.pop_front().unwrap(), expected_commitments);
|
assert_eq!(msgs.pop_front().unwrap(), expected_commitments);
|
||||||
|
@ -138,8 +137,7 @@ async fn dkg_test() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// With just 4 sets of shares, nothing should happen yet
|
// With just 4 sets of shares, nothing should happen yet
|
||||||
handle_new_blocks(&mut scanner_db, &keys[0], &mut processor, &spec, &tributaries[0].1.reader())
|
handle_new_blocks(&mut scanner_db, &keys[0], &processor, &spec, &tributaries[0].1.reader()).await;
|
||||||
.await;
|
|
||||||
assert!(processor.0.write().await.is_empty());
|
assert!(processor.0.write().await.is_empty());
|
||||||
|
|
||||||
// Publish the final set of shares
|
// Publish the final set of shares
|
||||||
|
@ -170,8 +168,7 @@ async fn dkg_test() {
|
||||||
};
|
};
|
||||||
|
|
||||||
// Any scanner which has handled the prior blocks should only emit the new event
|
// Any scanner which has handled the prior blocks should only emit the new event
|
||||||
handle_new_blocks(&mut scanner_db, &keys[0], &mut processor, &spec, &tributaries[0].1.reader())
|
handle_new_blocks(&mut scanner_db, &keys[0], &processor, &spec, &tributaries[0].1.reader()).await;
|
||||||
.await;
|
|
||||||
{
|
{
|
||||||
let mut msgs = processor.0.write().await;
|
let mut msgs = processor.0.write().await;
|
||||||
assert_eq!(msgs.pop_front().unwrap(), shares_for(0));
|
assert_eq!(msgs.pop_front().unwrap(), shares_for(0));
|
||||||
|
|
|
@ -25,7 +25,7 @@ use crate::{
|
||||||
async fn handle_block<D: Db, Pro: Processor>(
|
async fn handle_block<D: Db, Pro: Processor>(
|
||||||
db: &mut TributaryDb<D>,
|
db: &mut TributaryDb<D>,
|
||||||
key: &Zeroizing<<Ristretto as Ciphersuite>::F>,
|
key: &Zeroizing<<Ristretto as Ciphersuite>::F>,
|
||||||
processor: &mut Pro,
|
processor: &Pro,
|
||||||
spec: &TributarySpec,
|
spec: &TributarySpec,
|
||||||
block: Block<Transaction>,
|
block: Block<Transaction>,
|
||||||
) {
|
) {
|
||||||
|
@ -285,7 +285,7 @@ async fn handle_block<D: Db, Pro: Processor>(
|
||||||
pub async fn handle_new_blocks<D: Db, Pro: Processor>(
|
pub async fn handle_new_blocks<D: Db, Pro: Processor>(
|
||||||
db: &mut TributaryDb<D>,
|
db: &mut TributaryDb<D>,
|
||||||
key: &Zeroizing<<Ristretto as Ciphersuite>::F>,
|
key: &Zeroizing<<Ristretto as Ciphersuite>::F>,
|
||||||
processor: &mut Pro,
|
processor: &Pro,
|
||||||
spec: &TributarySpec,
|
spec: &TributarySpec,
|
||||||
tributary: &TributaryReader<D, Transaction>,
|
tributary: &TributaryReader<D, Transaction>,
|
||||||
) {
|
) {
|
||||||
|
|
|
@ -164,7 +164,7 @@ impl<D: Db, T: Transaction, P: P2p> Tributary<D, T, P> {
|
||||||
|
|
||||||
// Returns if the transaction was valid.
|
// Returns if the transaction was valid.
|
||||||
// Safe to be &self since the only meaningful usage of self is self.network.blockchain which
|
// Safe to be &self since the only meaningful usage of self is self.network.blockchain which
|
||||||
// successfully acquires its own write lock.
|
// successfully acquires its own write lock
|
||||||
pub async fn add_transaction(&self, tx: T) -> bool {
|
pub async fn add_transaction(&self, tx: T) -> bool {
|
||||||
let mut to_broadcast = vec![TRANSACTION_MESSAGE];
|
let mut to_broadcast = vec![TRANSACTION_MESSAGE];
|
||||||
tx.write(&mut to_broadcast).unwrap();
|
tx.write(&mut to_broadcast).unwrap();
|
||||||
|
|
Loading…
Reference in a new issue