mirror of
https://github.com/Cuprate/cuprate.git
synced 2024-11-16 15:58:17 +00:00
Merge branch 'main' into cuprated-txpool
This commit is contained in:
commit
5f7291bfe7
51 changed files with 502 additions and 258 deletions
23
Cargo.lock
generated
23
Cargo.lock
generated
|
@ -606,6 +606,7 @@ name = "cuprate-consensus"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cfg-if",
|
"cfg-if",
|
||||||
|
"cuprate-consensus-context",
|
||||||
"cuprate-consensus-rules",
|
"cuprate-consensus-rules",
|
||||||
"cuprate-helper",
|
"cuprate-helper",
|
||||||
"cuprate-test-utils",
|
"cuprate-test-utils",
|
||||||
|
@ -618,12 +619,30 @@ dependencies = [
|
||||||
"proptest",
|
"proptest",
|
||||||
"proptest-derive",
|
"proptest-derive",
|
||||||
"rand",
|
"rand",
|
||||||
"randomx-rs",
|
|
||||||
"rayon",
|
"rayon",
|
||||||
"thiserror",
|
"thiserror",
|
||||||
"thread_local",
|
"thread_local",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tokio-test",
|
"tokio-test",
|
||||||
|
"tower 0.5.1",
|
||||||
|
"tracing",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "cuprate-consensus-context"
|
||||||
|
version = "0.1.0"
|
||||||
|
dependencies = [
|
||||||
|
"cuprate-consensus-rules",
|
||||||
|
"cuprate-helper",
|
||||||
|
"cuprate-types",
|
||||||
|
"futures",
|
||||||
|
"hex",
|
||||||
|
"monero-serai",
|
||||||
|
"randomx-rs",
|
||||||
|
"rayon",
|
||||||
|
"thiserror",
|
||||||
|
"thread_local",
|
||||||
|
"tokio",
|
||||||
"tokio-util",
|
"tokio-util",
|
||||||
"tower 0.5.1",
|
"tower 0.5.1",
|
||||||
"tracing",
|
"tracing",
|
||||||
|
@ -735,6 +754,7 @@ dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
"cuprate-blockchain",
|
"cuprate-blockchain",
|
||||||
"cuprate-consensus",
|
"cuprate-consensus",
|
||||||
|
"cuprate-consensus-context",
|
||||||
"cuprate-consensus-rules",
|
"cuprate-consensus-rules",
|
||||||
"cuprate-helper",
|
"cuprate-helper",
|
||||||
"cuprate-types",
|
"cuprate-types",
|
||||||
|
@ -1004,6 +1024,7 @@ dependencies = [
|
||||||
"cuprate-async-buffer",
|
"cuprate-async-buffer",
|
||||||
"cuprate-blockchain",
|
"cuprate-blockchain",
|
||||||
"cuprate-consensus",
|
"cuprate-consensus",
|
||||||
|
"cuprate-consensus-context",
|
||||||
"cuprate-consensus-rules",
|
"cuprate-consensus-rules",
|
||||||
"cuprate-cryptonight",
|
"cuprate-cryptonight",
|
||||||
"cuprate-dandelion-tower",
|
"cuprate-dandelion-tower",
|
||||||
|
|
30
Cargo.toml
30
Cargo.toml
|
@ -5,6 +5,7 @@ members = [
|
||||||
"binaries/cuprated",
|
"binaries/cuprated",
|
||||||
"constants",
|
"constants",
|
||||||
"consensus",
|
"consensus",
|
||||||
|
"consensus/context",
|
||||||
"consensus/fast-sync",
|
"consensus/fast-sync",
|
||||||
"consensus/rules",
|
"consensus/rules",
|
||||||
"cryptonight",
|
"cryptonight",
|
||||||
|
@ -49,6 +50,35 @@ opt-level = 1
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
|
# Cuprate members
|
||||||
|
cuprate-fast-sync = { path = "consensus/fast-sync" ,default-features = false}
|
||||||
|
cuprate-consensus-rules = { path = "consensus/rules" ,default-features = false}
|
||||||
|
cuprate-constants = { path = "constants" ,default-features = false}
|
||||||
|
cuprate-consensus = { path = "consensus" ,default-features = false}
|
||||||
|
cuprate-consensus-context = { path = "consensus/context" ,default-features = false}
|
||||||
|
cuprate-cryptonight = { path = "cryptonight" ,default-features = false}
|
||||||
|
cuprate-helper = { path = "helper" ,default-features = false}
|
||||||
|
cuprate-epee-encoding = { path = "net/epee-encoding" ,default-features = false}
|
||||||
|
cuprate-fixed-bytes = { path = "net/fixed-bytes" ,default-features = false}
|
||||||
|
cuprate-levin = { path = "net/levin" ,default-features = false}
|
||||||
|
cuprate-wire = { path = "net/wire" ,default-features = false}
|
||||||
|
cuprate-p2p = { path = "p2p/p2p" ,default-features = false}
|
||||||
|
cuprate-p2p-core = { path = "p2p/p2p-core" ,default-features = false}
|
||||||
|
cuprate-dandelion-tower = { path = "p2p/dandelion-tower" ,default-features = false}
|
||||||
|
cuprate-async-buffer = { path = "p2p/async-buffer" ,default-features = false}
|
||||||
|
cuprate-address-book = { path = "p2p/address-book" ,default-features = false}
|
||||||
|
cuprate-blockchain = { path = "storage/blockchain" ,default-features = false}
|
||||||
|
cuprate-database = { path = "storage/database" ,default-features = false}
|
||||||
|
cuprate-database-service = { path = "storage/service" ,default-features = false}
|
||||||
|
cuprate-txpool = { path = "storage/txpool" ,default-features = false}
|
||||||
|
cuprate-pruning = { path = "pruning" ,default-features = false}
|
||||||
|
cuprate-test-utils = { path = "test-utils" ,default-features = false}
|
||||||
|
cuprate-types = { path = "types" ,default-features = false}
|
||||||
|
cuprate-json-rpc = { path = "rpc/json-rpc" ,default-features = false}
|
||||||
|
cuprate-rpc-types = { path = "rpc/types" ,default-features = false}
|
||||||
|
cuprate-rpc-interface = { path = "rpc/interface" ,default-features = false}
|
||||||
|
|
||||||
|
# External dependencies
|
||||||
anyhow = { version = "1.0.89", default-features = false }
|
anyhow = { version = "1.0.89", default-features = false }
|
||||||
async-trait = { version = "0.1.82", default-features = false }
|
async-trait = { version = "0.1.82", default-features = false }
|
||||||
bitflags = { version = "2.6.0", default-features = false }
|
bitflags = { version = "2.6.0", default-features = false }
|
||||||
|
|
|
@ -9,30 +9,31 @@ repository = "https://github.com/Cuprate/cuprate/tree/main/binaries/cuprated"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
# TODO: after v1.0.0, remove unneeded dependencies.
|
# TODO: after v1.0.0, remove unneeded dependencies.
|
||||||
cuprate-consensus = { path = "../../consensus" }
|
cuprate-consensus = { workspace = true }
|
||||||
cuprate-fast-sync = { path = "../../consensus/fast-sync" }
|
cuprate-fast-sync = { workspace = true }
|
||||||
cuprate-consensus-rules = { path = "../../consensus/rules" }
|
cuprate-consensus-context = { workspace = true }
|
||||||
cuprate-cryptonight = { path = "../../cryptonight" }
|
cuprate-consensus-rules = { workspace = true }
|
||||||
cuprate-helper = { path = "../../helper" }
|
cuprate-cryptonight = { workspace = true }
|
||||||
cuprate-epee-encoding = { path = "../../net/epee-encoding" }
|
cuprate-helper = { workspace = true }
|
||||||
cuprate-fixed-bytes = { path = "../../net/fixed-bytes" }
|
cuprate-epee-encoding = { workspace = true }
|
||||||
cuprate-levin = { path = "../../net/levin" }
|
cuprate-fixed-bytes = { workspace = true }
|
||||||
cuprate-wire = { path = "../../net/wire" }
|
cuprate-levin = { workspace = true }
|
||||||
cuprate-p2p = { path = "../../p2p/p2p" }
|
cuprate-wire = { workspace = true }
|
||||||
cuprate-p2p-core = { path = "../../p2p/p2p-core" }
|
cuprate-p2p = { workspace = true }
|
||||||
cuprate-dandelion-tower = { path = "../../p2p/dandelion-tower", features = ["txpool"] }
|
cuprate-p2p-core = { workspace = true }
|
||||||
cuprate-async-buffer = { path = "../../p2p/async-buffer" }
|
cuprate-dandelion-tower = { workspace = true, features = ["txpool"] }
|
||||||
cuprate-address-book = { path = "../../p2p/address-book" }
|
cuprate-async-buffer = { workspace = true }
|
||||||
cuprate-blockchain = { path = "../../storage/blockchain", features = ["service"] }
|
cuprate-address-book = { workspace = true }
|
||||||
cuprate-database-service = { path = "../../storage/service" }
|
cuprate-blockchain = { workspace = true, features = ["service"] }
|
||||||
cuprate-txpool = { path = "../../storage/txpool" }
|
cuprate-database-service = { workspace = true }
|
||||||
cuprate-database = { path = "../../storage/database" }
|
cuprate-txpool = { workspace = true }
|
||||||
cuprate-pruning = { path = "../../pruning" }
|
cuprate-database = { workspace = true }
|
||||||
cuprate-test-utils = { path = "../../test-utils" }
|
cuprate-pruning = { workspace = true }
|
||||||
cuprate-types = { path = "../../types" }
|
cuprate-test-utils = { workspace = true }
|
||||||
cuprate-json-rpc = { path = "../../rpc/json-rpc" }
|
cuprate-types = { workspace = true }
|
||||||
cuprate-rpc-interface = { path = "../../rpc/interface" }
|
cuprate-json-rpc = { workspace = true }
|
||||||
cuprate-rpc-types = { path = "../../rpc/types" }
|
cuprate-rpc-interface = { workspace = true }
|
||||||
|
cuprate-rpc-types = { workspace = true }
|
||||||
|
|
||||||
# TODO: after v1.0.0, remove unneeded dependencies.
|
# TODO: after v1.0.0, remove unneeded dependencies.
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
|
|
|
@ -8,10 +8,11 @@ use tracing::error;
|
||||||
|
|
||||||
use cuprate_blockchain::service::{BlockchainReadHandle, BlockchainWriteHandle};
|
use cuprate_blockchain::service::{BlockchainReadHandle, BlockchainWriteHandle};
|
||||||
use cuprate_consensus::{
|
use cuprate_consensus::{
|
||||||
context::RawBlockChainContext, BlockChainContextRequest, BlockChainContextResponse,
|
BlockChainContextRequest, BlockChainContextResponse, BlockChainContextService,
|
||||||
BlockChainContextService, BlockVerifierService, ExtendedConsensusError, TxVerifierService,
|
BlockVerifierService, ExtendedConsensusError, TxVerifierService, VerifyBlockRequest,
|
||||||
VerifyBlockRequest, VerifyBlockResponse, VerifyTxRequest, VerifyTxResponse,
|
VerifyBlockResponse, VerifyTxRequest, VerifyTxResponse,
|
||||||
};
|
};
|
||||||
|
use cuprate_consensus_context::RawBlockChainContext;
|
||||||
use cuprate_p2p::{
|
use cuprate_p2p::{
|
||||||
block_downloader::{BlockBatch, BlockDownloaderConfig},
|
block_downloader::{BlockBatch, BlockDownloaderConfig},
|
||||||
BroadcastSvc, NetworkInterface,
|
BroadcastSvc, NetworkInterface,
|
||||||
|
|
|
@ -13,11 +13,11 @@ use tracing::info;
|
||||||
|
|
||||||
use cuprate_blockchain::service::{BlockchainReadHandle, BlockchainWriteHandle};
|
use cuprate_blockchain::service::{BlockchainReadHandle, BlockchainWriteHandle};
|
||||||
use cuprate_consensus::{
|
use cuprate_consensus::{
|
||||||
block::PreparedBlock, context::NewBlockData, transactions::new_tx_verification_data,
|
block::PreparedBlock, transactions::new_tx_verification_data, BlockChainContextRequest,
|
||||||
BlockChainContextRequest, BlockChainContextResponse, BlockVerifierService,
|
BlockChainContextResponse, BlockVerifierService, ExtendedConsensusError, VerifyBlockRequest,
|
||||||
ExtendedConsensusError, VerifyBlockRequest, VerifyBlockResponse, VerifyTxRequest,
|
VerifyBlockResponse, VerifyTxRequest, VerifyTxResponse,
|
||||||
VerifyTxResponse,
|
|
||||||
};
|
};
|
||||||
|
use cuprate_consensus_context::NewBlockData;
|
||||||
use cuprate_helper::cast::usize_to_u64;
|
use cuprate_helper::cast::usize_to_u64;
|
||||||
use cuprate_p2p::{block_downloader::BlockBatch, constants::LONG_BAN, BroadcastRequest};
|
use cuprate_p2p::{block_downloader::BlockBatch, constants::LONG_BAN, BroadcastRequest};
|
||||||
use cuprate_txpool::service::interface::TxpoolWriteRequest;
|
use cuprate_txpool::service::interface::TxpoolWriteRequest;
|
||||||
|
|
|
@ -5,7 +5,7 @@ use std::convert::Infallible;
|
||||||
use anyhow::Error;
|
use anyhow::Error;
|
||||||
use tower::{Service, ServiceExt};
|
use tower::{Service, ServiceExt};
|
||||||
|
|
||||||
use cuprate_consensus::context::{
|
use cuprate_consensus_context::{
|
||||||
BlockChainContext, BlockChainContextRequest, BlockChainContextResponse,
|
BlockChainContext, BlockChainContextRequest, BlockChainContextResponse,
|
||||||
BlockChainContextService,
|
BlockChainContextService,
|
||||||
};
|
};
|
||||||
|
|
|
@ -16,7 +16,8 @@ cargo doc --open --package cuprate-blockchain
|
||||||
| Crate | In-tree path | Purpose |
|
| Crate | In-tree path | Purpose |
|
||||||
|-------|--------------|---------|
|
|-------|--------------|---------|
|
||||||
| [`cuprate-consensus`](https://doc.cuprate.org/cuprate_consensus) | [`consensus/`](https://github.com/Cuprate/cuprate/tree/main/consensus) | TODO
|
| [`cuprate-consensus`](https://doc.cuprate.org/cuprate_consensus) | [`consensus/`](https://github.com/Cuprate/cuprate/tree/main/consensus) | TODO
|
||||||
| [`cuprate-consensus-rules`](https://doc.cuprate.org/cuprate_consensus_rules) | [`consensus/rules/`](https://github.com/Cuprate/cuprate/tree/main/consensus-rules) | TODO
|
| [`cuprate-consensus-context`](https://doc.cuprate.org/cuprate_consensus_context) | [`consensus/context/`](https://github.com/Cuprate/cuprate/tree/main/consensus/context) | TODO
|
||||||
|
| [`cuprate-consensus-rules`](https://doc.cuprate.org/cuprate_consensus_rules) | [`consensus/rules/`](https://github.com/Cuprate/cuprate/tree/main/consensus/rules) | TODO
|
||||||
| [`cuprate-fast-sync`](https://doc.cuprate.org/cuprate_fast_sync) | [`consensus/fast-sync/`](https://github.com/Cuprate/cuprate/tree/main/consensus/fast-sync) | Fast block synchronization
|
| [`cuprate-fast-sync`](https://doc.cuprate.org/cuprate_fast_sync) | [`consensus/fast-sync/`](https://github.com/Cuprate/cuprate/tree/main/consensus/fast-sync) | Fast block synchronization
|
||||||
|
|
||||||
## Networking
|
## Networking
|
||||||
|
|
|
@ -8,9 +8,10 @@ authors = ["Boog900"]
|
||||||
repository = "https://github.com/Cuprate/cuprate/tree/main/consensus"
|
repository = "https://github.com/Cuprate/cuprate/tree/main/consensus"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cuprate-helper = { path = "../helper", default-features = false, features = ["std", "asynch", "num"] }
|
cuprate-helper = { workspace = true, default-features = false, features = ["std", "asynch", "num"] }
|
||||||
cuprate-consensus-rules = { path = "./rules", features = ["rayon"] }
|
cuprate-consensus-rules = { workspace = true, features = ["rayon"] }
|
||||||
cuprate-types = { path = "../types" }
|
cuprate-types = { workspace = true }
|
||||||
|
cuprate-consensus-context = { workspace = true }
|
||||||
|
|
||||||
cfg-if = { workspace = true }
|
cfg-if = { workspace = true }
|
||||||
thiserror = { workspace = true }
|
thiserror = { workspace = true }
|
||||||
|
@ -18,20 +19,17 @@ tower = { workspace = true, features = ["util"] }
|
||||||
tracing = { workspace = true, features = ["std", "attributes"] }
|
tracing = { workspace = true, features = ["std", "attributes"] }
|
||||||
futures = { workspace = true, features = ["std", "async-await"] }
|
futures = { workspace = true, features = ["std", "async-await"] }
|
||||||
|
|
||||||
randomx-rs = { workspace = true }
|
|
||||||
monero-serai = { workspace = true, features = ["std"] }
|
monero-serai = { workspace = true, features = ["std"] }
|
||||||
|
|
||||||
rayon = { workspace = true }
|
rayon = { workspace = true }
|
||||||
thread_local = { workspace = true }
|
thread_local = { workspace = true }
|
||||||
tokio = { workspace = true, features = ["rt"] }
|
|
||||||
tokio-util = { workspace = true }
|
|
||||||
|
|
||||||
hex = { workspace = true }
|
hex = { workspace = true }
|
||||||
rand = { workspace = true }
|
rand = { workspace = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
cuprate-test-utils = { path = "../test-utils" }
|
cuprate-test-utils = { workspace = true }
|
||||||
cuprate-consensus-rules = {path = "./rules", features = ["proptest"]}
|
cuprate-consensus-rules = { workspace = true, features = ["proptest"]}
|
||||||
|
|
||||||
hex-literal = { workspace = true }
|
hex-literal = { workspace = true }
|
||||||
curve25519-dalek = { workspace = true }
|
curve25519-dalek = { workspace = true }
|
||||||
|
|
27
consensus/context/Cargo.toml
Normal file
27
consensus/context/Cargo.toml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
[package]
|
||||||
|
name = "cuprate-consensus-context"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
license = "MIT"
|
||||||
|
authors = ["SyntheticBird","Boog900"]
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
cuprate-consensus-rules = { workspace = true, features = ["proptest"]}
|
||||||
|
cuprate-helper = { workspace = true, default-features = false, features = ["std", "cast", "num", "asynch"] }
|
||||||
|
cuprate-types = { workspace = true, default-features = false, features = ["blockchain"] }
|
||||||
|
|
||||||
|
futures = { workspace = true, features = ["std", "async-await"] }
|
||||||
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"]}
|
||||||
|
tokio-util = { workspace = true }
|
||||||
|
tower = { workspace = true, features = ["util"] }
|
||||||
|
tracing = { workspace = true, features = ["std", "attributes"] }
|
||||||
|
thiserror = { workspace = true }
|
||||||
|
|
||||||
|
monero-serai = { workspace = true, features = ["std"] }
|
||||||
|
randomx-rs = { workspace = true }
|
||||||
|
rayon = { workspace = true }
|
||||||
|
thread_local = { workspace = true }
|
||||||
|
hex = { workspace = true }
|
||||||
|
|
||||||
|
[lints]
|
||||||
|
workspace = true
|
|
@ -9,9 +9,8 @@ use cuprate_types::{
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
ExtendedConsensusError,
|
ContextCacheError, __private::Database, difficulty::DifficultyCache, rx_vms::RandomXVm,
|
||||||
__private::Database,
|
weight::BlockWeightsCache,
|
||||||
context::{difficulty::DifficultyCache, rx_vms::RandomXVm, weight::BlockWeightsCache},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
pub(crate) mod sealed {
|
pub(crate) mod sealed {
|
||||||
|
@ -38,7 +37,7 @@ pub struct AltChainContextCache {
|
||||||
pub chain_height: usize,
|
pub chain_height: usize,
|
||||||
/// The top hash of the alt chain.
|
/// The top hash of the alt chain.
|
||||||
pub top_hash: [u8; 32],
|
pub top_hash: [u8; 32],
|
||||||
/// The [`ChainID`] of the alt chain.
|
/// The [`ChainId`] of the alt chain.
|
||||||
pub chain_id: Option<ChainId>,
|
pub chain_id: Option<ChainId>,
|
||||||
/// The parent [`Chain`] of this alt chain.
|
/// The parent [`Chain`] of this alt chain.
|
||||||
pub parent_chain: Chain,
|
pub parent_chain: Chain,
|
||||||
|
@ -98,7 +97,7 @@ impl AltChainMap {
|
||||||
&mut self,
|
&mut self,
|
||||||
prev_id: [u8; 32],
|
prev_id: [u8; 32],
|
||||||
database: D,
|
database: D,
|
||||||
) -> Result<Box<AltChainContextCache>, ExtendedConsensusError> {
|
) -> Result<Box<AltChainContextCache>, ContextCacheError> {
|
||||||
if let Some(cache) = self.alt_cache_map.remove(&prev_id) {
|
if let Some(cache) = self.alt_cache_map.remove(&prev_id) {
|
||||||
return Ok(cache);
|
return Ok(cache);
|
||||||
}
|
}
|
||||||
|
@ -133,7 +132,7 @@ pub(crate) async fn get_alt_chain_difficulty_cache<D: Database + Clone>(
|
||||||
prev_id: [u8; 32],
|
prev_id: [u8; 32],
|
||||||
main_chain_difficulty_cache: &DifficultyCache,
|
main_chain_difficulty_cache: &DifficultyCache,
|
||||||
mut database: D,
|
mut database: D,
|
||||||
) -> Result<DifficultyCache, ExtendedConsensusError> {
|
) -> Result<DifficultyCache, ContextCacheError> {
|
||||||
// find the block with hash == prev_id.
|
// find the block with hash == prev_id.
|
||||||
let BlockchainResponse::FindBlock(res) = database
|
let BlockchainResponse::FindBlock(res) = database
|
||||||
.ready()
|
.ready()
|
||||||
|
@ -180,7 +179,7 @@ pub(crate) async fn get_alt_chain_weight_cache<D: Database + Clone>(
|
||||||
prev_id: [u8; 32],
|
prev_id: [u8; 32],
|
||||||
main_chain_weight_cache: &BlockWeightsCache,
|
main_chain_weight_cache: &BlockWeightsCache,
|
||||||
mut database: D,
|
mut database: D,
|
||||||
) -> Result<BlockWeightsCache, ExtendedConsensusError> {
|
) -> Result<BlockWeightsCache, ContextCacheError> {
|
||||||
// find the block with hash == prev_id.
|
// find the block with hash == prev_id.
|
||||||
let BlockchainResponse::FindBlock(res) = database
|
let BlockchainResponse::FindBlock(res) = database
|
||||||
.ready()
|
.ready()
|
|
@ -17,7 +17,7 @@ use cuprate_types::{
|
||||||
Chain,
|
Chain,
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::{Database, ExtendedConsensusError, HardFork};
|
use crate::{ContextCacheError, Database, HardFork};
|
||||||
|
|
||||||
/// The amount of blocks we account for to calculate difficulty
|
/// The amount of blocks we account for to calculate difficulty
|
||||||
const DIFFICULTY_WINDOW: usize = 720;
|
const DIFFICULTY_WINDOW: usize = 720;
|
||||||
|
@ -33,9 +33,9 @@ const DIFFICULTY_LAG: usize = 15;
|
||||||
///
|
///
|
||||||
#[derive(Debug, Clone, Copy, Eq, PartialEq)]
|
#[derive(Debug, Clone, Copy, Eq, PartialEq)]
|
||||||
pub struct DifficultyCacheConfig {
|
pub struct DifficultyCacheConfig {
|
||||||
pub(crate) window: usize,
|
pub window: usize,
|
||||||
pub(crate) cut: usize,
|
pub cut: usize,
|
||||||
pub(crate) lag: usize,
|
pub lag: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl DifficultyCacheConfig {
|
impl DifficultyCacheConfig {
|
||||||
|
@ -73,14 +73,13 @@ impl DifficultyCacheConfig {
|
||||||
#[derive(Debug, Clone, Eq, PartialEq)]
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
||||||
pub struct DifficultyCache {
|
pub struct DifficultyCache {
|
||||||
/// The list of timestamps in the window.
|
/// The list of timestamps in the window.
|
||||||
/// len <= [`DIFFICULTY_BLOCKS_COUNT`]
|
pub timestamps: VecDeque<u64>,
|
||||||
pub(crate) timestamps: VecDeque<u64>,
|
|
||||||
/// The current cumulative difficulty of the chain.
|
/// The current cumulative difficulty of the chain.
|
||||||
pub(crate) cumulative_difficulties: VecDeque<u128>,
|
pub cumulative_difficulties: VecDeque<u128>,
|
||||||
/// The last height we accounted for.
|
/// The last height we accounted for.
|
||||||
pub(crate) last_accounted_height: usize,
|
pub last_accounted_height: usize,
|
||||||
/// The config
|
/// The config
|
||||||
pub(crate) config: DifficultyCacheConfig,
|
pub config: DifficultyCacheConfig,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl DifficultyCache {
|
impl DifficultyCache {
|
||||||
|
@ -91,7 +90,7 @@ impl DifficultyCache {
|
||||||
config: DifficultyCacheConfig,
|
config: DifficultyCacheConfig,
|
||||||
database: D,
|
database: D,
|
||||||
chain: Chain,
|
chain: Chain,
|
||||||
) -> Result<Self, ExtendedConsensusError> {
|
) -> Result<Self, ContextCacheError> {
|
||||||
tracing::info!("Initializing difficulty cache this may take a while.");
|
tracing::info!("Initializing difficulty cache this may take a while.");
|
||||||
|
|
||||||
let mut block_start = chain_height.saturating_sub(config.total_block_count());
|
let mut block_start = chain_height.saturating_sub(config.total_block_count());
|
||||||
|
@ -134,7 +133,7 @@ impl DifficultyCache {
|
||||||
&mut self,
|
&mut self,
|
||||||
numb_blocks: usize,
|
numb_blocks: usize,
|
||||||
database: D,
|
database: D,
|
||||||
) -> Result<(), ExtendedConsensusError> {
|
) -> Result<(), ContextCacheError> {
|
||||||
let Some(retained_blocks) = self.timestamps.len().checked_sub(numb_blocks) else {
|
let Some(retained_blocks) = self.timestamps.len().checked_sub(numb_blocks) else {
|
||||||
// More blocks to pop than we have in the cache, so just restart a new cache.
|
// More blocks to pop than we have in the cache, so just restart a new cache.
|
||||||
*self = Self::init_from_chain_height(
|
*self = Self::init_from_chain_height(
|
||||||
|
@ -330,7 +329,7 @@ fn next_difficulty(
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: do checked operations here and unwrap so we don't silently overflow?
|
// TODO: do checked operations here and unwrap so we don't silently overflow?
|
||||||
(windowed_work * hf.block_time().as_secs() as u128 + time_span - 1) / time_span
|
(windowed_work * u128::from(hf.block_time().as_secs()) + time_span - 1) / time_span
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get the start and end of the window to calculate difficulty.
|
/// Get the start and end of the window to calculate difficulty.
|
||||||
|
@ -361,7 +360,7 @@ async fn get_blocks_in_pow_info<D: Database + Clone>(
|
||||||
database: D,
|
database: D,
|
||||||
block_heights: Range<usize>,
|
block_heights: Range<usize>,
|
||||||
chain: Chain,
|
chain: Chain,
|
||||||
) -> Result<(VecDeque<u64>, VecDeque<u128>), ExtendedConsensusError> {
|
) -> Result<(VecDeque<u64>, VecDeque<u128>), ContextCacheError> {
|
||||||
tracing::info!("Getting blocks timestamps");
|
tracing::info!("Getting blocks timestamps");
|
||||||
|
|
||||||
let BlockchainResponse::BlockExtendedHeaderInRange(ext_header) = database
|
let BlockchainResponse::BlockExtendedHeaderInRange(ext_header) = database
|
|
@ -9,7 +9,7 @@ use cuprate_types::{
|
||||||
Chain,
|
Chain,
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::{Database, ExtendedConsensusError};
|
use crate::{ContextCacheError, Database};
|
||||||
|
|
||||||
/// The default amount of hard-fork votes to track to decide on activation of a hard-fork.
|
/// The default amount of hard-fork votes to track to decide on activation of a hard-fork.
|
||||||
///
|
///
|
||||||
|
@ -21,9 +21,9 @@ const DEFAULT_WINDOW_SIZE: usize = 10080; // supermajority window check length -
|
||||||
#[derive(Debug, Clone, Copy, Eq, PartialEq)]
|
#[derive(Debug, Clone, Copy, Eq, PartialEq)]
|
||||||
pub struct HardForkConfig {
|
pub struct HardForkConfig {
|
||||||
/// The network we are on.
|
/// The network we are on.
|
||||||
pub(crate) info: HFsInfo,
|
pub info: HFsInfo,
|
||||||
/// The amount of votes we are taking into account to decide on a fork activation.
|
/// The amount of votes we are taking into account to decide on a fork activation.
|
||||||
pub(crate) window: usize,
|
pub window: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl HardForkConfig {
|
impl HardForkConfig {
|
||||||
|
@ -54,17 +54,17 @@ impl HardForkConfig {
|
||||||
|
|
||||||
/// A struct that keeps track of the current hard-fork and current votes.
|
/// A struct that keeps track of the current hard-fork and current votes.
|
||||||
#[derive(Debug, Clone, Eq, PartialEq)]
|
#[derive(Debug, Clone, Eq, PartialEq)]
|
||||||
pub(crate) struct HardForkState {
|
pub struct HardForkState {
|
||||||
/// The current active hard-fork.
|
/// The current active hard-fork.
|
||||||
pub(crate) current_hardfork: HardFork,
|
pub current_hardfork: HardFork,
|
||||||
|
|
||||||
/// The hard-fork config.
|
/// The hard-fork config.
|
||||||
pub(crate) config: HardForkConfig,
|
pub config: HardForkConfig,
|
||||||
/// The votes in the current window.
|
/// The votes in the current window.
|
||||||
pub(crate) votes: HFVotes,
|
pub votes: HFVotes,
|
||||||
|
|
||||||
/// The last block height accounted for.
|
/// The last block height accounted for.
|
||||||
pub(crate) last_height: usize,
|
pub last_height: usize,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl HardForkState {
|
impl HardForkState {
|
||||||
|
@ -74,7 +74,7 @@ impl HardForkState {
|
||||||
chain_height: usize,
|
chain_height: usize,
|
||||||
config: HardForkConfig,
|
config: HardForkConfig,
|
||||||
mut database: D,
|
mut database: D,
|
||||||
) -> Result<Self, ExtendedConsensusError> {
|
) -> Result<Self, ContextCacheError> {
|
||||||
tracing::info!("Initializing hard-fork state this may take a while.");
|
tracing::info!("Initializing hard-fork state this may take a while.");
|
||||||
|
|
||||||
let block_start = chain_height.saturating_sub(config.window);
|
let block_start = chain_height.saturating_sub(config.window);
|
||||||
|
@ -122,11 +122,11 @@ impl HardForkState {
|
||||||
/// # Invariant
|
/// # Invariant
|
||||||
///
|
///
|
||||||
/// This _must_ only be used on a main-chain cache.
|
/// This _must_ only be used on a main-chain cache.
|
||||||
pub(crate) async fn pop_blocks_main_chain<D: Database + Clone>(
|
pub async fn pop_blocks_main_chain<D: Database + Clone>(
|
||||||
&mut self,
|
&mut self,
|
||||||
numb_blocks: usize,
|
numb_blocks: usize,
|
||||||
database: D,
|
database: D,
|
||||||
) -> Result<(), ExtendedConsensusError> {
|
) -> Result<(), ContextCacheError> {
|
||||||
let Some(retained_blocks) = self.votes.total_votes().checked_sub(self.config.window) else {
|
let Some(retained_blocks) = self.votes.total_votes().checked_sub(self.config.window) else {
|
||||||
*self = Self::init_from_chain_height(
|
*self = Self::init_from_chain_height(
|
||||||
self.last_height + 1 - numb_blocks,
|
self.last_height + 1 - numb_blocks,
|
||||||
|
@ -159,7 +159,7 @@ impl HardForkState {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Add a new block to the cache.
|
/// Add a new block to the cache.
|
||||||
pub(crate) fn new_block(&mut self, vote: HardFork, height: usize) {
|
pub fn new_block(&mut self, vote: HardFork, height: usize) {
|
||||||
// We don't _need_ to take in `height` but it's for safety, so we don't silently loose track
|
// We don't _need_ to take in `height` but it's for safety, so we don't silently loose track
|
||||||
// of blocks.
|
// of blocks.
|
||||||
assert_eq!(self.last_height + 1, height);
|
assert_eq!(self.last_height + 1, height);
|
||||||
|
@ -194,7 +194,7 @@ impl HardForkState {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns the current hard-fork.
|
/// Returns the current hard-fork.
|
||||||
pub(crate) const fn current_hardfork(&self) -> HardFork {
|
pub const fn current_hardfork(&self) -> HardFork {
|
||||||
self.current_hardfork
|
self.current_hardfork
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -205,7 +205,7 @@ async fn get_votes_in_range<D: Database>(
|
||||||
database: D,
|
database: D,
|
||||||
block_heights: Range<usize>,
|
block_heights: Range<usize>,
|
||||||
window_size: usize,
|
window_size: usize,
|
||||||
) -> Result<HFVotes, ExtendedConsensusError> {
|
) -> Result<HFVotes, ContextCacheError> {
|
||||||
let mut votes = HFVotes::new(window_size);
|
let mut votes = HFVotes::new(window_size);
|
||||||
|
|
||||||
let BlockchainResponse::BlockExtendedHeaderInRange(vote_list) = database
|
let BlockchainResponse::BlockExtendedHeaderInRange(vote_list) = database
|
|
@ -1,9 +1,13 @@
|
||||||
//! # Blockchain Context
|
//! # Blockchain Context
|
||||||
//!
|
//!
|
||||||
//! This module contains a service to get cached context from the blockchain: [`BlockChainContext`].
|
//! This crate contains a service to get cached context from the blockchain: [`BlockChainContext`].
|
||||||
//! This is used during contextual validation, this does not have all the data for contextual validation
|
//! This is used during contextual validation, this does not have all the data for contextual validation
|
||||||
//! (outputs) for that you will need a [`Database`].
|
//! (outputs) for that you will need a [`Database`].
|
||||||
//!
|
|
||||||
|
// Used in documentation references for [`BlockChainContextRequest`]
|
||||||
|
// FIXME: should we pull in a dependency just to link docs?
|
||||||
|
use monero_serai as _;
|
||||||
|
|
||||||
use std::{
|
use std::{
|
||||||
cmp::min,
|
cmp::min,
|
||||||
collections::HashMap,
|
collections::HashMap,
|
||||||
|
@ -18,14 +22,14 @@ use tokio::sync::mpsc;
|
||||||
use tokio_util::sync::PollSender;
|
use tokio_util::sync::PollSender;
|
||||||
use tower::Service;
|
use tower::Service;
|
||||||
|
|
||||||
use cuprate_consensus_rules::{blocks::ContextToVerifyBlock, current_unix_timestamp, HardFork};
|
use cuprate_consensus_rules::{
|
||||||
|
blocks::ContextToVerifyBlock, current_unix_timestamp, ConsensusError, HardFork,
|
||||||
|
};
|
||||||
|
|
||||||
use crate::{Database, ExtendedConsensusError};
|
pub mod difficulty;
|
||||||
|
pub mod hardforks;
|
||||||
pub(crate) mod difficulty;
|
pub mod rx_vms;
|
||||||
pub(crate) mod hardforks;
|
pub mod weight;
|
||||||
pub(crate) mod rx_vms;
|
|
||||||
pub(crate) mod weight;
|
|
||||||
|
|
||||||
mod alt_chains;
|
mod alt_chains;
|
||||||
mod task;
|
mod task;
|
||||||
|
@ -36,13 +40,13 @@ use difficulty::DifficultyCache;
|
||||||
use rx_vms::RandomXVm;
|
use rx_vms::RandomXVm;
|
||||||
use weight::BlockWeightsCache;
|
use weight::BlockWeightsCache;
|
||||||
|
|
||||||
pub(crate) use alt_chains::{sealed::AltChainRequestToken, AltChainContextCache};
|
pub use alt_chains::{sealed::AltChainRequestToken, AltChainContextCache};
|
||||||
pub use difficulty::DifficultyCacheConfig;
|
pub use difficulty::DifficultyCacheConfig;
|
||||||
pub use hardforks::HardForkConfig;
|
pub use hardforks::HardForkConfig;
|
||||||
pub use tokens::*;
|
pub use tokens::*;
|
||||||
pub use weight::BlockWeightsCacheConfig;
|
pub use weight::BlockWeightsCacheConfig;
|
||||||
|
|
||||||
pub(crate) const BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW: u64 = 60;
|
pub const BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW: u64 = 60;
|
||||||
|
|
||||||
/// Config for the context service.
|
/// Config for the context service.
|
||||||
pub struct ContextConfig {
|
pub struct ContextConfig {
|
||||||
|
@ -91,7 +95,7 @@ impl ContextConfig {
|
||||||
pub async fn initialize_blockchain_context<D>(
|
pub async fn initialize_blockchain_context<D>(
|
||||||
cfg: ContextConfig,
|
cfg: ContextConfig,
|
||||||
database: D,
|
database: D,
|
||||||
) -> Result<BlockChainContextService, ExtendedConsensusError>
|
) -> Result<BlockChainContextService, ContextCacheError>
|
||||||
where
|
where
|
||||||
D: Database + Clone + Send + Sync + 'static,
|
D: Database + Clone + Send + Sync + 'static,
|
||||||
D::Future: Send + 'static,
|
D::Future: Send + 'static,
|
||||||
|
@ -414,3 +418,52 @@ impl Service<BlockChainContextRequest> for BlockChainContextService {
|
||||||
.boxed()
|
.boxed()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, thiserror::Error)]
|
||||||
|
pub enum ContextCacheError {
|
||||||
|
/// A consensus error.
|
||||||
|
#[error("{0}")]
|
||||||
|
ConErr(#[from] ConsensusError),
|
||||||
|
/// A database error.
|
||||||
|
#[error("Database error: {0}")]
|
||||||
|
DBErr(#[from] tower::BoxError),
|
||||||
|
}
|
||||||
|
|
||||||
|
use __private::Database;
|
||||||
|
|
||||||
|
pub mod __private {
|
||||||
|
use std::future::Future;
|
||||||
|
|
||||||
|
use cuprate_types::blockchain::{BlockchainReadRequest, BlockchainResponse};
|
||||||
|
|
||||||
|
/// A type alias trait used to represent a database, so we don't have to write [`tower::Service`] bounds
|
||||||
|
/// everywhere.
|
||||||
|
///
|
||||||
|
/// Automatically implemented for:
|
||||||
|
/// ```ignore
|
||||||
|
/// tower::Service<BCReadRequest, Response = BCResponse, Error = tower::BoxError>
|
||||||
|
/// ```
|
||||||
|
pub trait Database:
|
||||||
|
tower::Service<
|
||||||
|
BlockchainReadRequest,
|
||||||
|
Response = BlockchainResponse,
|
||||||
|
Error = tower::BoxError,
|
||||||
|
Future = Self::Future2,
|
||||||
|
>
|
||||||
|
{
|
||||||
|
type Future2: Future<Output = Result<Self::Response, Self::Error>> + Send + 'static;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<
|
||||||
|
T: tower::Service<
|
||||||
|
BlockchainReadRequest,
|
||||||
|
Response = BlockchainResponse,
|
||||||
|
Error = tower::BoxError,
|
||||||
|
>,
|
||||||
|
> Database for T
|
||||||
|
where
|
||||||
|
T::Future: Future<Output = Result<Self::Response, Self::Error>> + Send + 'static,
|
||||||
|
{
|
||||||
|
type Future2 = T::Future;
|
||||||
|
}
|
||||||
|
}
|
|
@ -26,10 +26,10 @@ use cuprate_types::{
|
||||||
Chain,
|
Chain,
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::{Database, ExtendedConsensusError};
|
use crate::{ContextCacheError, Database};
|
||||||
|
|
||||||
/// The amount of randomX VMs to keep in the cache.
|
/// The amount of randomX VMs to keep in the cache.
|
||||||
const RX_SEEDS_CACHED: usize = 2;
|
pub const RX_SEEDS_CACHED: usize = 2;
|
||||||
|
|
||||||
/// A multithreaded randomX VM.
|
/// A multithreaded randomX VM.
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
|
@ -72,14 +72,14 @@ impl RandomX for RandomXVm {
|
||||||
/// The randomX VMs cache, keeps the VM needed to calculate the current block's proof-of-work hash (if a VM is needed) and a
|
/// The randomX VMs cache, keeps the VM needed to calculate the current block's proof-of-work hash (if a VM is needed) and a
|
||||||
/// couple more around this VM.
|
/// couple more around this VM.
|
||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
pub(crate) struct RandomXVmCache {
|
pub struct RandomXVmCache {
|
||||||
/// The top [`RX_SEEDS_CACHED`] RX seeds.
|
/// The top [`RX_SEEDS_CACHED`] RX seeds.
|
||||||
pub(crate) seeds: VecDeque<(usize, [u8; 32])>,
|
pub seeds: VecDeque<(usize, [u8; 32])>,
|
||||||
/// The VMs for `seeds` (if after hf 12, otherwise this will be empty).
|
/// The VMs for `seeds` (if after hf 12, otherwise this will be empty).
|
||||||
pub(crate) vms: HashMap<usize, Arc<RandomXVm>>,
|
pub vms: HashMap<usize, Arc<RandomXVm>>,
|
||||||
|
|
||||||
/// A single cached VM that was given to us from a part of Cuprate.
|
/// A single cached VM that was given to us from a part of Cuprate.
|
||||||
pub(crate) cached_vm: Option<([u8; 32], Arc<RandomXVm>)>,
|
pub cached_vm: Option<([u8; 32], Arc<RandomXVm>)>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl RandomXVmCache {
|
impl RandomXVmCache {
|
||||||
|
@ -88,7 +88,7 @@ impl RandomXVmCache {
|
||||||
chain_height: usize,
|
chain_height: usize,
|
||||||
hf: &HardFork,
|
hf: &HardFork,
|
||||||
database: D,
|
database: D,
|
||||||
) -> Result<Self, ExtendedConsensusError> {
|
) -> Result<Self, ContextCacheError> {
|
||||||
let seed_heights = get_last_rx_seed_heights(chain_height - 1, RX_SEEDS_CACHED);
|
let seed_heights = get_last_rx_seed_heights(chain_height - 1, RX_SEEDS_CACHED);
|
||||||
let seed_hashes = get_block_hashes(seed_heights.clone(), database).await?;
|
let seed_hashes = get_block_hashes(seed_heights.clone(), database).await?;
|
||||||
|
|
||||||
|
@ -125,18 +125,18 @@ impl RandomXVmCache {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Add a randomX VM to the cache, with the seed it was created with.
|
/// Add a randomX VM to the cache, with the seed it was created with.
|
||||||
pub(crate) fn add_vm(&mut self, vm: ([u8; 32], Arc<RandomXVm>)) {
|
pub fn add_vm(&mut self, vm: ([u8; 32], Arc<RandomXVm>)) {
|
||||||
self.cached_vm.replace(vm);
|
self.cached_vm.replace(vm);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Creates a RX VM for an alt chain, looking at the main chain RX VMs to see if we can use one
|
/// Creates a RX VM for an alt chain, looking at the main chain RX VMs to see if we can use one
|
||||||
/// of them first.
|
/// of them first.
|
||||||
pub(crate) async fn get_alt_vm<D: Database>(
|
pub async fn get_alt_vm<D: Database>(
|
||||||
&self,
|
&self,
|
||||||
height: usize,
|
height: usize,
|
||||||
chain: Chain,
|
chain: Chain,
|
||||||
database: D,
|
database: D,
|
||||||
) -> Result<Arc<RandomXVm>, ExtendedConsensusError> {
|
) -> Result<Arc<RandomXVm>, ContextCacheError> {
|
||||||
let seed_height = randomx_seed_height(height);
|
let seed_height = randomx_seed_height(height);
|
||||||
|
|
||||||
let BlockchainResponse::BlockHash(seed_hash) = database
|
let BlockchainResponse::BlockHash(seed_hash) = database
|
||||||
|
@ -162,7 +162,7 @@ impl RandomXVmCache {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Get the main-chain `RandomX` VMs.
|
/// Get the main-chain `RandomX` VMs.
|
||||||
pub(crate) async fn get_vms(&mut self) -> HashMap<usize, Arc<RandomXVm>> {
|
pub async fn get_vms(&mut self) -> HashMap<usize, Arc<RandomXVm>> {
|
||||||
match self.seeds.len().checked_sub(self.vms.len()) {
|
match self.seeds.len().checked_sub(self.vms.len()) {
|
||||||
// No difference in the amount of seeds to VMs.
|
// No difference in the amount of seeds to VMs.
|
||||||
Some(0) => (),
|
Some(0) => (),
|
||||||
|
@ -214,7 +214,7 @@ impl RandomXVmCache {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Removes all the `RandomX` VMs above the `new_height`.
|
/// Removes all the `RandomX` VMs above the `new_height`.
|
||||||
pub(crate) fn pop_blocks_main_chain(&mut self, new_height: usize) {
|
pub fn pop_blocks_main_chain(&mut self, new_height: usize) {
|
||||||
self.seeds.retain(|(height, _)| *height < new_height);
|
self.seeds.retain(|(height, _)| *height < new_height);
|
||||||
self.vms.retain(|height, _| *height < new_height);
|
self.vms.retain(|height, _| *height < new_height);
|
||||||
}
|
}
|
||||||
|
@ -222,7 +222,7 @@ impl RandomXVmCache {
|
||||||
/// Add a new block to the VM cache.
|
/// Add a new block to the VM cache.
|
||||||
///
|
///
|
||||||
/// hash is the block hash not the blocks proof-of-work hash.
|
/// hash is the block hash not the blocks proof-of-work hash.
|
||||||
pub(crate) fn new_block(&mut self, height: usize, hash: &[u8; 32]) {
|
pub fn new_block(&mut self, height: usize, hash: &[u8; 32]) {
|
||||||
if is_randomx_seed_height(height) {
|
if is_randomx_seed_height(height) {
|
||||||
tracing::debug!("Block {height} is a randomX seed height, adding it to the cache.",);
|
tracing::debug!("Block {height} is a randomX seed height, adding it to the cache.",);
|
||||||
|
|
||||||
|
@ -243,7 +243,7 @@ impl RandomXVmCache {
|
||||||
|
|
||||||
/// Get the last `amount` of RX seeds, the top height returned here will not necessarily be the RX VM for the top block
|
/// Get the last `amount` of RX seeds, the top height returned here will not necessarily be the RX VM for the top block
|
||||||
/// in the chain as VMs include some lag before a seed activates.
|
/// in the chain as VMs include some lag before a seed activates.
|
||||||
pub(crate) fn get_last_rx_seed_heights(mut last_height: usize, mut amount: usize) -> Vec<usize> {
|
pub fn get_last_rx_seed_heights(mut last_height: usize, mut amount: usize) -> Vec<usize> {
|
||||||
let mut seeds = Vec::with_capacity(amount);
|
let mut seeds = Vec::with_capacity(amount);
|
||||||
if is_randomx_seed_height(last_height) {
|
if is_randomx_seed_height(last_height) {
|
||||||
seeds.push(last_height);
|
seeds.push(last_height);
|
||||||
|
@ -268,7 +268,7 @@ pub(crate) fn get_last_rx_seed_heights(mut last_height: usize, mut amount: usize
|
||||||
async fn get_block_hashes<D: Database + Clone>(
|
async fn get_block_hashes<D: Database + Clone>(
|
||||||
heights: Vec<usize>,
|
heights: Vec<usize>,
|
||||||
database: D,
|
database: D,
|
||||||
) -> Result<Vec<[u8; 32]>, ExtendedConsensusError> {
|
) -> Result<Vec<[u8; 32]>, ContextCacheError> {
|
||||||
let mut fut = FuturesOrdered::new();
|
let mut fut = FuturesOrdered::new();
|
||||||
|
|
||||||
for height in heights {
|
for height in heights {
|
||||||
|
@ -281,7 +281,7 @@ async fn get_block_hashes<D: Database + Clone>(
|
||||||
else {
|
else {
|
||||||
panic!("Database sent incorrect response!");
|
panic!("Database sent incorrect response!");
|
||||||
};
|
};
|
||||||
Result::<_, ExtendedConsensusError>::Ok(hash)
|
Result::<_, ContextCacheError>::Ok(hash)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,13 +16,10 @@ use cuprate_types::{
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
context::{
|
alt_chains::{get_alt_chain_difficulty_cache, get_alt_chain_weight_cache, AltChainMap},
|
||||||
alt_chains::{get_alt_chain_difficulty_cache, get_alt_chain_weight_cache, AltChainMap},
|
difficulty, hardforks, rx_vms, weight, BlockChainContext, BlockChainContextRequest,
|
||||||
difficulty, hardforks, rx_vms, weight, BlockChainContext, BlockChainContextRequest,
|
BlockChainContextResponse, ContextCacheError, ContextConfig, Database, RawBlockChainContext,
|
||||||
BlockChainContextResponse, ContextConfig, RawBlockChainContext, ValidityToken,
|
ValidityToken, BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW,
|
||||||
BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW,
|
|
||||||
},
|
|
||||||
Database, ExtendedConsensusError,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/// A request from the context service to the context task.
|
/// A request from the context service to the context task.
|
||||||
|
@ -68,7 +65,7 @@ impl<D: Database + Clone + Send + 'static> ContextTask<D> {
|
||||||
pub(crate) async fn init_context(
|
pub(crate) async fn init_context(
|
||||||
cfg: ContextConfig,
|
cfg: ContextConfig,
|
||||||
mut database: D,
|
mut database: D,
|
||||||
) -> Result<Self, ExtendedConsensusError> {
|
) -> Result<Self, ContextCacheError> {
|
||||||
let ContextConfig {
|
let ContextConfig {
|
||||||
difficulty_cfg,
|
difficulty_cfg,
|
||||||
weights_config,
|
weights_config,
|
|
@ -21,12 +21,12 @@ use cuprate_types::{
|
||||||
Chain,
|
Chain,
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::{Database, ExtendedConsensusError, HardFork};
|
use crate::{ContextCacheError, Database, HardFork};
|
||||||
|
|
||||||
/// The short term block weight window.
|
/// The short term block weight window.
|
||||||
const SHORT_TERM_WINDOW: usize = 100;
|
pub const SHORT_TERM_WINDOW: usize = 100;
|
||||||
/// The long term block weight window.
|
/// The long term block weight window.
|
||||||
const LONG_TERM_WINDOW: usize = 100000;
|
pub const LONG_TERM_WINDOW: usize = 100000;
|
||||||
|
|
||||||
/// Configuration for the block weight cache.
|
/// Configuration for the block weight cache.
|
||||||
///
|
///
|
||||||
|
@ -80,7 +80,7 @@ impl BlockWeightsCache {
|
||||||
config: BlockWeightsCacheConfig,
|
config: BlockWeightsCacheConfig,
|
||||||
database: D,
|
database: D,
|
||||||
chain: Chain,
|
chain: Chain,
|
||||||
) -> Result<Self, ExtendedConsensusError> {
|
) -> Result<Self, ContextCacheError> {
|
||||||
tracing::info!("Initializing weight cache this may take a while.");
|
tracing::info!("Initializing weight cache this may take a while.");
|
||||||
|
|
||||||
let long_term_weights = get_long_term_weight_in_range(
|
let long_term_weights = get_long_term_weight_in_range(
|
||||||
|
@ -121,7 +121,7 @@ impl BlockWeightsCache {
|
||||||
&mut self,
|
&mut self,
|
||||||
numb_blocks: usize,
|
numb_blocks: usize,
|
||||||
database: D,
|
database: D,
|
||||||
) -> Result<(), ExtendedConsensusError> {
|
) -> Result<(), ContextCacheError> {
|
||||||
if self.long_term_weights.window_len() <= numb_blocks {
|
if self.long_term_weights.window_len() <= numb_blocks {
|
||||||
// More blocks to pop than we have in the cache, so just restart a new cache.
|
// More blocks to pop than we have in the cache, so just restart a new cache.
|
||||||
*self = Self::init_from_chain_height(
|
*self = Self::init_from_chain_height(
|
||||||
|
@ -258,7 +258,7 @@ fn calculate_effective_median_block_weight(
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Calculates a blocks long term weight.
|
/// Calculates a blocks long term weight.
|
||||||
pub(crate) fn calculate_block_long_term_weight(
|
pub fn calculate_block_long_term_weight(
|
||||||
hf: HardFork,
|
hf: HardFork,
|
||||||
block_weight: usize,
|
block_weight: usize,
|
||||||
long_term_median: usize,
|
long_term_median: usize,
|
||||||
|
@ -287,7 +287,7 @@ async fn get_blocks_weight_in_range<D: Database + Clone>(
|
||||||
range: Range<usize>,
|
range: Range<usize>,
|
||||||
database: D,
|
database: D,
|
||||||
chain: Chain,
|
chain: Chain,
|
||||||
) -> Result<Vec<usize>, ExtendedConsensusError> {
|
) -> Result<Vec<usize>, ContextCacheError> {
|
||||||
tracing::info!("getting block weights.");
|
tracing::info!("getting block weights.");
|
||||||
|
|
||||||
let BlockchainResponse::BlockExtendedHeaderInRange(ext_headers) = database
|
let BlockchainResponse::BlockExtendedHeaderInRange(ext_headers) = database
|
||||||
|
@ -311,7 +311,7 @@ async fn get_long_term_weight_in_range<D: Database + Clone>(
|
||||||
range: Range<usize>,
|
range: Range<usize>,
|
||||||
database: D,
|
database: D,
|
||||||
chain: Chain,
|
chain: Chain,
|
||||||
) -> Result<Vec<usize>, ExtendedConsensusError> {
|
) -> Result<Vec<usize>, ContextCacheError> {
|
||||||
tracing::info!("getting block long term weights.");
|
tracing::info!("getting block long term weights.");
|
||||||
|
|
||||||
let BlockchainResponse::BlockExtendedHeaderInRange(ext_headers) = database
|
let BlockchainResponse::BlockExtendedHeaderInRange(ext_headers) = database
|
|
@ -9,11 +9,12 @@ name = "cuprate-fast-sync-create-hashes"
|
||||||
path = "src/create.rs"
|
path = "src/create.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cuprate-blockchain = { path = "../../storage/blockchain" }
|
cuprate-blockchain = { workspace = true }
|
||||||
cuprate-consensus = { path = ".." }
|
cuprate-consensus = { workspace = true }
|
||||||
cuprate-consensus-rules = { path = "../rules" }
|
cuprate-consensus-rules = { workspace = true }
|
||||||
cuprate-types = { path = "../../types" }
|
cuprate-consensus-context = { workspace = true }
|
||||||
cuprate-helper = { path = "../../helper", features = ["cast"] }
|
cuprate-types = { workspace = true }
|
||||||
|
cuprate-helper = { workspace = true, features = ["cast"] }
|
||||||
|
|
||||||
clap = { workspace = true, features = ["derive", "std"] }
|
clap = { workspace = true, features = ["derive", "std"] }
|
||||||
hex = { workspace = true }
|
hex = { workspace = true }
|
||||||
|
|
|
@ -12,10 +12,8 @@ use monero_serai::{
|
||||||
};
|
};
|
||||||
use tower::{Service, ServiceExt};
|
use tower::{Service, ServiceExt};
|
||||||
|
|
||||||
use cuprate_consensus::{
|
use cuprate_consensus::transactions::new_tx_verification_data;
|
||||||
context::{BlockChainContextRequest, BlockChainContextResponse},
|
use cuprate_consensus_context::{BlockChainContextRequest, BlockChainContextResponse};
|
||||||
transactions::new_tx_verification_data,
|
|
||||||
};
|
|
||||||
use cuprate_consensus_rules::{miner_tx::MinerTxError, ConsensusError};
|
use cuprate_consensus_rules::{miner_tx::MinerTxError, ConsensusError};
|
||||||
use cuprate_helper::cast::u64_to_usize;
|
use cuprate_helper::cast::u64_to_usize;
|
||||||
use cuprate_types::{VerifiedBlockInformation, VerifiedTransactionInformation};
|
use cuprate_types::{VerifiedBlockInformation, VerifiedTransactionInformation};
|
||||||
|
|
|
@ -11,10 +11,10 @@ proptest = ["cuprate-types/proptest"]
|
||||||
rayon = ["dep:rayon"]
|
rayon = ["dep:rayon"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cuprate-constants = { path = "../../constants", default-features = false }
|
cuprate-constants = { workspace = true, default-features = false, features = ["block"] }
|
||||||
cuprate-helper = { path = "../../helper", default-features = false, features = ["std", "cast"] }
|
cuprate-helper = { workspace = true, default-features = false, features = ["std", "cast"] }
|
||||||
cuprate-types = { path = "../../types", default-features = false }
|
cuprate-types = { workspace = true, default-features = false }
|
||||||
cuprate-cryptonight = {path = "../../cryptonight"}
|
cuprate-cryptonight = { workspace = true }
|
||||||
|
|
||||||
monero-serai = { workspace = true, features = ["std"] }
|
monero-serai = { workspace = true, features = ["std"] }
|
||||||
curve25519-dalek = { workspace = true, features = ["alloc", "zeroize", "precomputed-tables"] }
|
curve25519-dalek = { workspace = true, features = ["alloc", "zeroize", "precomputed-tables"] }
|
||||||
|
|
|
@ -63,9 +63,9 @@ where
|
||||||
/// An internal function that returns an iterator or a parallel iterator if the
|
/// An internal function that returns an iterator or a parallel iterator if the
|
||||||
/// `rayon` feature is enabled.
|
/// `rayon` feature is enabled.
|
||||||
#[cfg(not(feature = "rayon"))]
|
#[cfg(not(feature = "rayon"))]
|
||||||
fn try_par_iter<T>(t: T) -> impl std::iter::Iterator<Item = T::Item>
|
fn try_par_iter<T>(t: T) -> impl Iterator<Item = T::Item>
|
||||||
where
|
where
|
||||||
T: std::iter::IntoIterator,
|
T: IntoIterator,
|
||||||
{
|
{
|
||||||
t.into_iter()
|
t.into_iter()
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,7 +68,7 @@ pub fn calculate_block_reward(
|
||||||
.unwrap();
|
.unwrap();
|
||||||
let effective_median_bw: u128 = median_bw.try_into().unwrap();
|
let effective_median_bw: u128 = median_bw.try_into().unwrap();
|
||||||
|
|
||||||
(((base_reward as u128 * multiplicand) / effective_median_bw) / effective_median_bw)
|
(((u128::from(base_reward) * multiplicand) / effective_median_bw) / effective_median_bw)
|
||||||
.try_into()
|
.try_into()
|
||||||
.unwrap()
|
.unwrap()
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,6 +14,9 @@ use monero_serai::{
|
||||||
};
|
};
|
||||||
use tower::{Service, ServiceExt};
|
use tower::{Service, ServiceExt};
|
||||||
|
|
||||||
|
use cuprate_consensus_context::{
|
||||||
|
BlockChainContextRequest, BlockChainContextResponse, RawBlockChainContext,
|
||||||
|
};
|
||||||
use cuprate_helper::asynch::rayon_spawn_async;
|
use cuprate_helper::asynch::rayon_spawn_async;
|
||||||
use cuprate_types::{
|
use cuprate_types::{
|
||||||
AltBlockInformation, TransactionVerificationData, VerifiedBlockInformation,
|
AltBlockInformation, TransactionVerificationData, VerifiedBlockInformation,
|
||||||
|
@ -30,7 +33,6 @@ use cuprate_consensus_rules::{
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
context::{BlockChainContextRequest, BlockChainContextResponse, RawBlockChainContext},
|
|
||||||
transactions::{VerifyTxRequest, VerifyTxResponse},
|
transactions::{VerifyTxRequest, VerifyTxResponse},
|
||||||
Database, ExtendedConsensusError,
|
Database, ExtendedConsensusError,
|
||||||
};
|
};
|
||||||
|
|
|
@ -7,6 +7,12 @@ use std::{collections::HashMap, sync::Arc};
|
||||||
use monero_serai::{block::Block, transaction::Input};
|
use monero_serai::{block::Block, transaction::Input};
|
||||||
use tower::{Service, ServiceExt};
|
use tower::{Service, ServiceExt};
|
||||||
|
|
||||||
|
use cuprate_consensus_context::{
|
||||||
|
difficulty::DifficultyCache,
|
||||||
|
rx_vms::RandomXVm,
|
||||||
|
weight::{self, BlockWeightsCache},
|
||||||
|
AltChainContextCache, AltChainRequestToken, BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW,
|
||||||
|
};
|
||||||
use cuprate_consensus_rules::{
|
use cuprate_consensus_rules::{
|
||||||
blocks::{
|
blocks::{
|
||||||
check_block_pow, check_block_weight, check_timestamp, randomx_seed_height, BlockError,
|
check_block_pow, check_block_weight, check_timestamp, randomx_seed_height, BlockError,
|
||||||
|
@ -22,12 +28,6 @@ use cuprate_types::{
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
block::{free::pull_ordered_transactions, PreparedBlock},
|
block::{free::pull_ordered_transactions, PreparedBlock},
|
||||||
context::{
|
|
||||||
difficulty::DifficultyCache,
|
|
||||||
rx_vms::RandomXVm,
|
|
||||||
weight::{self, BlockWeightsCache},
|
|
||||||
AltChainContextCache, AltChainRequestToken, BLOCKCHAIN_TIMESTAMP_CHECK_WINDOW,
|
|
||||||
},
|
|
||||||
BlockChainContextRequest, BlockChainContextResponse, ExtendedConsensusError,
|
BlockChainContextRequest, BlockChainContextResponse, ExtendedConsensusError,
|
||||||
VerifyBlockResponse,
|
VerifyBlockResponse,
|
||||||
};
|
};
|
||||||
|
|
|
@ -5,6 +5,7 @@ use rayon::prelude::*;
|
||||||
use tower::{Service, ServiceExt};
|
use tower::{Service, ServiceExt};
|
||||||
use tracing::instrument;
|
use tracing::instrument;
|
||||||
|
|
||||||
|
use cuprate_consensus_context::rx_vms::RandomXVm;
|
||||||
use cuprate_consensus_rules::{
|
use cuprate_consensus_rules::{
|
||||||
blocks::{check_block_pow, is_randomx_seed_height, randomx_seed_height, BlockError},
|
blocks::{check_block_pow, is_randomx_seed_height, randomx_seed_height, BlockError},
|
||||||
hard_forks::HardForkError,
|
hard_forks::HardForkError,
|
||||||
|
@ -15,7 +16,6 @@ use cuprate_helper::asynch::rayon_spawn_async;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
block::{free::pull_ordered_transactions, PreparedBlock, PreparedBlockExPow},
|
block::{free::pull_ordered_transactions, PreparedBlock, PreparedBlockExPow},
|
||||||
context::rx_vms::RandomXVm,
|
|
||||||
transactions::new_tx_verification_data,
|
transactions::new_tx_verification_data,
|
||||||
BlockChainContextRequest, BlockChainContextResponse, ExtendedConsensusError,
|
BlockChainContextRequest, BlockChainContextResponse, ExtendedConsensusError,
|
||||||
VerifyBlockResponse,
|
VerifyBlockResponse,
|
||||||
|
|
|
@ -24,13 +24,12 @@ use cuprate_consensus_rules::ConsensusError;
|
||||||
|
|
||||||
mod batch_verifier;
|
mod batch_verifier;
|
||||||
pub mod block;
|
pub mod block;
|
||||||
pub mod context;
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests;
|
mod tests;
|
||||||
pub mod transactions;
|
pub mod transactions;
|
||||||
|
|
||||||
pub use block::{BlockVerifierService, VerifyBlockRequest, VerifyBlockResponse};
|
pub use block::{BlockVerifierService, VerifyBlockRequest, VerifyBlockResponse};
|
||||||
pub use context::{
|
pub use cuprate_consensus_context::{
|
||||||
initialize_blockchain_context, BlockChainContext, BlockChainContextRequest,
|
initialize_blockchain_context, BlockChainContext, BlockChainContextRequest,
|
||||||
BlockChainContextResponse, BlockChainContextService, ContextConfig,
|
BlockChainContextResponse, BlockChainContextService, ContextConfig,
|
||||||
};
|
};
|
||||||
|
|
|
@ -2,15 +2,13 @@ use proptest::strategy::ValueTree;
|
||||||
use proptest::{strategy::Strategy, test_runner::TestRunner};
|
use proptest::{strategy::Strategy, test_runner::TestRunner};
|
||||||
use tower::ServiceExt;
|
use tower::ServiceExt;
|
||||||
|
|
||||||
use crate::{
|
use cuprate_consensus_context::{
|
||||||
context::{
|
initialize_blockchain_context, BlockChainContextRequest, BlockChainContextResponse,
|
||||||
initialize_blockchain_context, BlockChainContextRequest, BlockChainContextResponse,
|
ContextConfig, NewBlockData,
|
||||||
ContextConfig, NewBlockData,
|
|
||||||
},
|
|
||||||
tests::mock_db::*,
|
|
||||||
HardFork,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use crate::{tests::mock_db::*, HardFork};
|
||||||
|
|
||||||
pub(crate) mod data;
|
pub(crate) mod data;
|
||||||
mod difficulty;
|
mod difficulty;
|
||||||
mod hardforks;
|
mod hardforks;
|
||||||
|
|
|
@ -4,10 +4,10 @@ use proptest::collection::{size_range, vec};
|
||||||
use proptest::{prelude::*, prop_assert_eq, prop_compose, proptest};
|
use proptest::{prelude::*, prop_assert_eq, prop_compose, proptest};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
context::difficulty::*,
|
|
||||||
tests::{context::data::DIF_3000000_3002000, mock_db::*},
|
tests::{context::data::DIF_3000000_3002000, mock_db::*},
|
||||||
HardFork,
|
HardFork,
|
||||||
};
|
};
|
||||||
|
use cuprate_consensus_context::difficulty::*;
|
||||||
use cuprate_helper::num::median;
|
use cuprate_helper::num::median;
|
||||||
use cuprate_types::Chain;
|
use cuprate_types::Chain;
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,11 @@
|
||||||
use proptest::{collection::vec, prelude::*};
|
use proptest::{collection::vec, prelude::*};
|
||||||
|
|
||||||
|
use cuprate_consensus_context::{hardforks::HardForkState, HardForkConfig};
|
||||||
use cuprate_consensus_rules::hard_forks::{HFInfo, HFsInfo, HardFork, NUMB_OF_HARD_FORKS};
|
use cuprate_consensus_rules::hard_forks::{HFInfo, HFsInfo, HardFork, NUMB_OF_HARD_FORKS};
|
||||||
|
|
||||||
use crate::{
|
use crate::tests::{
|
||||||
context::{hardforks::HardForkState, HardForkConfig},
|
context::data::{HFS_2678808_2688888, HFS_2688888_2689608},
|
||||||
tests::{
|
mock_db::*,
|
||||||
context::data::{HFS_2678808_2688888, HFS_2688888_2689608},
|
|
||||||
mock_db::*,
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const TEST_WINDOW_SIZE: usize = 25;
|
const TEST_WINDOW_SIZE: usize = 25;
|
||||||
|
|
|
@ -3,15 +3,13 @@ use std::collections::VecDeque;
|
||||||
use proptest::prelude::*;
|
use proptest::prelude::*;
|
||||||
use tokio::runtime::Builder;
|
use tokio::runtime::Builder;
|
||||||
|
|
||||||
|
use cuprate_consensus_context::rx_vms::{get_last_rx_seed_heights, RandomXVmCache};
|
||||||
use cuprate_consensus_rules::{
|
use cuprate_consensus_rules::{
|
||||||
blocks::{is_randomx_seed_height, randomx_seed_height},
|
blocks::{is_randomx_seed_height, randomx_seed_height},
|
||||||
HardFork,
|
HardFork,
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::{
|
use crate::tests::mock_db::*;
|
||||||
context::rx_vms::{get_last_rx_seed_heights, RandomXVmCache},
|
|
||||||
tests::mock_db::*,
|
|
||||||
};
|
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn rx_heights_consistent() {
|
fn rx_heights_consistent() {
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
use crate::{
|
use crate::{
|
||||||
context::{
|
|
||||||
weight::{calculate_block_long_term_weight, BlockWeightsCache},
|
|
||||||
BlockWeightsCacheConfig,
|
|
||||||
},
|
|
||||||
tests::{context::data::BW_2850000_3050000, mock_db::*},
|
tests::{context::data::BW_2850000_3050000, mock_db::*},
|
||||||
HardFork,
|
HardFork,
|
||||||
};
|
};
|
||||||
|
use cuprate_consensus_context::{
|
||||||
|
weight::{calculate_block_long_term_weight, BlockWeightsCache},
|
||||||
|
BlockWeightsCacheConfig,
|
||||||
|
};
|
||||||
use cuprate_types::Chain;
|
use cuprate_types::Chain;
|
||||||
|
|
||||||
pub(crate) const TEST_WEIGHT_CONFIG: BlockWeightsCacheConfig =
|
pub(crate) const TEST_WEIGHT_CONFIG: BlockWeightsCacheConfig =
|
||||||
|
|
|
@ -16,6 +16,7 @@ atomic = ["dep:crossbeam"]
|
||||||
asynch = ["dep:futures", "dep:rayon"]
|
asynch = ["dep:futures", "dep:rayon"]
|
||||||
cast = []
|
cast = []
|
||||||
constants = []
|
constants = []
|
||||||
|
crypto = ["dep:curve25519-dalek", "dep:monero-serai", "std"]
|
||||||
fs = ["dep:dirs"]
|
fs = ["dep:dirs"]
|
||||||
num = []
|
num = []
|
||||||
map = ["cast", "dep:monero-serai", "dep:cuprate-constants"]
|
map = ["cast", "dep:monero-serai", "dep:cuprate-constants"]
|
||||||
|
@ -24,14 +25,15 @@ thread = ["std", "dep:target_os_lib"]
|
||||||
tx = ["dep:monero-serai"]
|
tx = ["dep:monero-serai"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cuprate-constants = { path = "../constants", optional = true, features = ["block"] }
|
cuprate-constants = { workspace = true, optional = true, features = ["block"] }
|
||||||
|
|
||||||
crossbeam = { workspace = true, optional = true }
|
chrono = { workspace = true, optional = true, features = ["std", "clock"] }
|
||||||
chrono = { workspace = true, optional = true, features = ["std", "clock"] }
|
crossbeam = { workspace = true, optional = true }
|
||||||
dirs = { workspace = true, optional = true }
|
curve25519-dalek = { workspace = true, optional = true }
|
||||||
futures = { workspace = true, optional = true, features = ["std"] }
|
dirs = { workspace = true, optional = true }
|
||||||
monero-serai = { workspace = true, optional = true }
|
futures = { workspace = true, optional = true, features = ["std"] }
|
||||||
rayon = { workspace = true, optional = true }
|
monero-serai = { workspace = true, optional = true }
|
||||||
|
rayon = { workspace = true, optional = true }
|
||||||
|
|
||||||
# This is kinda a stupid work around.
|
# This is kinda a stupid work around.
|
||||||
# [thread] needs to activate one of these libs (windows|libc)
|
# [thread] needs to activate one of these libs (windows|libc)
|
||||||
|
|
122
helper/src/crypto.rs
Normal file
122
helper/src/crypto.rs
Normal file
|
@ -0,0 +1,122 @@
|
||||||
|
//! Crypto related functions and runtime initialized constants
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------- Use
|
||||||
|
use std::sync::LazyLock;
|
||||||
|
|
||||||
|
use curve25519_dalek::{
|
||||||
|
constants::ED25519_BASEPOINT_POINT, edwards::VartimeEdwardsPrecomputation,
|
||||||
|
traits::VartimePrecomputedMultiscalarMul, EdwardsPoint, Scalar,
|
||||||
|
};
|
||||||
|
use monero_serai::generators::H;
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------- Pre-computation
|
||||||
|
|
||||||
|
/// This is the decomposed amount table containing the mandatory Pre-RCT amounts. It is used to pre-compute
|
||||||
|
/// zero commitments at runtime.
|
||||||
|
///
|
||||||
|
/// Defined at:
|
||||||
|
/// - <https://github.com/monero-project/monero/blob/893916ad091a92e765ce3241b94e706ad012b62a/src/ringct/rctOps.cpp#L44>
|
||||||
|
#[rustfmt::skip]
|
||||||
|
pub const ZERO_COMMITMENT_DECOMPOSED_AMOUNT: [u64; 172] = [
|
||||||
|
1, 2, 3, 4, 5, 6, 7, 8, 9,
|
||||||
|
10, 20, 30, 40, 50, 60, 70, 80, 90,
|
||||||
|
100, 200, 300, 400, 500, 600, 700, 800, 900,
|
||||||
|
1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000,
|
||||||
|
10000, 20000, 30000, 40000, 50000, 60000, 70000, 80000, 90000,
|
||||||
|
100000, 200000, 300000, 400000, 500000, 600000, 700000, 800000, 900000,
|
||||||
|
1000000, 2000000, 3000000, 4000000, 5000000, 6000000, 7000000, 8000000, 9000000,
|
||||||
|
10000000, 20000000, 30000000, 40000000, 50000000, 60000000, 70000000, 80000000, 90000000,
|
||||||
|
100000000, 200000000, 300000000, 400000000, 500000000, 600000000, 700000000, 800000000, 900000000,
|
||||||
|
1000000000, 2000000000, 3000000000, 4000000000, 5000000000, 6000000000, 7000000000, 8000000000, 9000000000,
|
||||||
|
10000000000, 20000000000, 30000000000, 40000000000, 50000000000, 60000000000, 70000000000, 80000000000, 90000000000,
|
||||||
|
100000000000, 200000000000, 300000000000, 400000000000, 500000000000, 600000000000, 700000000000, 800000000000, 900000000000,
|
||||||
|
1000000000000, 2000000000000, 3000000000000, 4000000000000, 5000000000000, 6000000000000, 7000000000000, 8000000000000, 9000000000000,
|
||||||
|
10000000000000, 20000000000000, 30000000000000, 40000000000000, 50000000000000, 60000000000000, 70000000000000, 80000000000000, 90000000000000,
|
||||||
|
100000000000000, 200000000000000, 300000000000000, 400000000000000, 500000000000000, 600000000000000, 700000000000000, 800000000000000, 900000000000000,
|
||||||
|
1000000000000000, 2000000000000000, 3000000000000000, 4000000000000000, 5000000000000000, 6000000000000000, 7000000000000000, 8000000000000000, 9000000000000000,
|
||||||
|
10000000000000000, 20000000000000000, 30000000000000000, 40000000000000000, 50000000000000000, 60000000000000000, 70000000000000000, 80000000000000000, 90000000000000000,
|
||||||
|
100000000000000000, 200000000000000000, 300000000000000000, 400000000000000000, 500000000000000000, 600000000000000000, 700000000000000000, 800000000000000000, 900000000000000000,
|
||||||
|
1000000000000000000, 2000000000000000000, 3000000000000000000, 4000000000000000000, 5000000000000000000, 6000000000000000000, 7000000000000000000, 8000000000000000000, 9000000000000000000,
|
||||||
|
10000000000000000000
|
||||||
|
];
|
||||||
|
|
||||||
|
/// Runtime initialized [`H`] generator.
|
||||||
|
static H_PRECOMP: LazyLock<VartimeEdwardsPrecomputation> =
|
||||||
|
LazyLock::new(|| VartimeEdwardsPrecomputation::new([*H, ED25519_BASEPOINT_POINT]));
|
||||||
|
|
||||||
|
/// Runtime initialized zero commitment lookup table
|
||||||
|
///
|
||||||
|
/// # Invariant
|
||||||
|
/// This function assumes that the [`ZERO_COMMITMENT_DECOMPOSED_AMOUNT`]
|
||||||
|
/// table is sorted.
|
||||||
|
pub static ZERO_COMMITMENT_LOOKUP_TABLE: LazyLock<[EdwardsPoint; 172]> = LazyLock::new(|| {
|
||||||
|
let mut lookup_table: [EdwardsPoint; 172] = [ED25519_BASEPOINT_POINT; 172];
|
||||||
|
|
||||||
|
for (i, amount) in ZERO_COMMITMENT_DECOMPOSED_AMOUNT.into_iter().enumerate() {
|
||||||
|
lookup_table[i] = ED25519_BASEPOINT_POINT + *H * Scalar::from(amount);
|
||||||
|
}
|
||||||
|
|
||||||
|
lookup_table
|
||||||
|
});
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------- Free functions
|
||||||
|
|
||||||
|
/// This function computes the zero commitment given a specific amount.
|
||||||
|
///
|
||||||
|
/// It will first attempt to lookup into the table of known Pre-RCT value.
|
||||||
|
/// Compute it otherwise.
|
||||||
|
#[expect(clippy::cast_possible_truncation)]
|
||||||
|
pub fn compute_zero_commitment(amount: u64) -> EdwardsPoint {
|
||||||
|
// OPTIMIZATION: Unlike monerod which execute a linear search across its lookup
|
||||||
|
// table (O(n)). Cuprate is making use of an arithmetic based constant time
|
||||||
|
// version (O(1)). It has been benchmarked in both hit and miss scenarios against
|
||||||
|
// a binary search lookup (O(log2(n))). To understand the following algorithm it
|
||||||
|
// is important to observe the pattern that follows the values of
|
||||||
|
// [`ZERO_COMMITMENT_DECOMPOSED_AMOUNT`].
|
||||||
|
|
||||||
|
// First obtain the logarithm base 10 of the amount. and extend it back to obtain
|
||||||
|
// the amount without its most significant digit.
|
||||||
|
let Some(log) = amount.checked_ilog10() else {
|
||||||
|
// amount = 0 so H component is 0.
|
||||||
|
return ED25519_BASEPOINT_POINT;
|
||||||
|
};
|
||||||
|
let div = 10_u64.pow(log);
|
||||||
|
|
||||||
|
// Extract the most significant digit.
|
||||||
|
let most_significant_digit = amount / div;
|
||||||
|
|
||||||
|
// If the *rounded* version is different than the exact amount. Then
|
||||||
|
// there aren't only trailing zeroes behind the most significant digit.
|
||||||
|
// The amount is not part of the table and can calculated apart.
|
||||||
|
if most_significant_digit * div != amount {
|
||||||
|
return H_PRECOMP.vartime_multiscalar_mul([Scalar::from(amount), Scalar::ONE]);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Calculating the index back by progressing within the powers of 10.
|
||||||
|
// The index of the first value in the cached amount's row.
|
||||||
|
let row_start = u64::from(log) * 9;
|
||||||
|
// The index of the cached amount
|
||||||
|
let index = (most_significant_digit - 1 + row_start) as usize;
|
||||||
|
|
||||||
|
ZERO_COMMITMENT_LOOKUP_TABLE[index]
|
||||||
|
}
|
||||||
|
|
||||||
|
//---------------------------------------------------------------------------------------------------- Tests
|
||||||
|
#[cfg(test)]
|
||||||
|
mod test {
|
||||||
|
use curve25519_dalek::{traits::VartimePrecomputedMultiscalarMul, Scalar};
|
||||||
|
|
||||||
|
use crate::crypto::{compute_zero_commitment, H_PRECOMP, ZERO_COMMITMENT_DECOMPOSED_AMOUNT};
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
/// Compare the output of `compute_zero_commitment` for all
|
||||||
|
/// preRCT decomposed amounts against their actual computation.
|
||||||
|
///
|
||||||
|
/// Assert that the lookup table returns the correct commitments
|
||||||
|
fn compare_lookup_with_computation() {
|
||||||
|
for amount in ZERO_COMMITMENT_DECOMPOSED_AMOUNT {
|
||||||
|
let commitment = H_PRECOMP.vartime_multiscalar_mul([Scalar::from(amount), Scalar::ONE]);
|
||||||
|
assert!(commitment == compute_zero_commitment(amount));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -30,6 +30,9 @@ pub mod time;
|
||||||
|
|
||||||
#[cfg(feature = "tx")]
|
#[cfg(feature = "tx")]
|
||||||
pub mod tx;
|
pub mod tx;
|
||||||
|
|
||||||
|
#[cfg(feature = "crypto")]
|
||||||
|
pub mod crypto;
|
||||||
//---------------------------------------------------------------------------------------------------- Private Usage
|
//---------------------------------------------------------------------------------------------------- Private Usage
|
||||||
|
|
||||||
//----------------------------------------------------------------------------------------------------
|
//----------------------------------------------------------------------------------------------------
|
||||||
|
|
|
@ -15,8 +15,8 @@ default = ["std"]
|
||||||
std = ["dep:thiserror", "bytes/std", "cuprate-fixed-bytes/std"]
|
std = ["dep:thiserror", "bytes/std", "cuprate-fixed-bytes/std"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cuprate-helper = { path = "../../helper", default-features = false, features = ["cast"] }
|
cuprate-helper = { workspace = true, default-features = false, features = ["cast"] }
|
||||||
cuprate-fixed-bytes = { path = "../fixed-bytes", default-features = false }
|
cuprate-fixed-bytes = { workspace = true, default-features = false }
|
||||||
|
|
||||||
paste = "1.0.15"
|
paste = "1.0.15"
|
||||||
ref-cast = "1.0.23"
|
ref-cast = "1.0.23"
|
||||||
|
|
|
@ -12,7 +12,7 @@ default = []
|
||||||
tracing = ["dep:tracing", "tokio-util/tracing"]
|
tracing = ["dep:tracing", "tokio-util/tracing"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cuprate-helper = { path = "../../helper", default-features = false, features = ["cast"] }
|
cuprate-helper = { workspace = true, default-features = false, features = ["cast"] }
|
||||||
|
|
||||||
cfg-if = { workspace = true }
|
cfg-if = { workspace = true }
|
||||||
thiserror = { workspace = true }
|
thiserror = { workspace = true }
|
||||||
|
|
|
@ -11,11 +11,11 @@ default = []
|
||||||
tracing = ["cuprate-levin/tracing"]
|
tracing = ["cuprate-levin/tracing"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cuprate-levin = { path = "../levin" }
|
cuprate-levin = { workspace = true }
|
||||||
cuprate-epee-encoding = { path = "../epee-encoding" }
|
cuprate-epee-encoding = { workspace = true }
|
||||||
cuprate-fixed-bytes = { path = "../fixed-bytes" }
|
cuprate-fixed-bytes = { workspace = true }
|
||||||
cuprate-types = { path = "../../types", default-features = false, features = ["epee"] }
|
cuprate-types = { workspace = true, default-features = false, features = ["epee"] }
|
||||||
cuprate-helper = { path = "../../helper", default-features = false, features = ["map"] }
|
cuprate-helper = { workspace = true, default-features = false, features = ["map"] }
|
||||||
|
|
||||||
bitflags = { workspace = true, features = ["std"] }
|
bitflags = { workspace = true, features = ["std"] }
|
||||||
bytes = { workspace = true, features = ["std"] }
|
bytes = { workspace = true, features = ["std"] }
|
||||||
|
|
|
@ -7,9 +7,9 @@ authors = ["Boog900"]
|
||||||
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cuprate-constants = { path = "../../constants" }
|
cuprate-constants = { workspace = true }
|
||||||
cuprate-pruning = { path = "../../pruning" }
|
cuprate-pruning = { workspace = true }
|
||||||
cuprate-p2p-core = { path = "../p2p-core" }
|
cuprate-p2p-core = { workspace = true }
|
||||||
|
|
||||||
tower = { workspace = true, features = ["util"] }
|
tower = { workspace = true, features = ["util"] }
|
||||||
tokio = { workspace = true, features = ["time", "fs", "rt"]}
|
tokio = { workspace = true, features = ["time", "fs", "rt"]}
|
||||||
|
@ -26,7 +26,7 @@ rand = { workspace = true, features = ["std", "std_rng"] }
|
||||||
borsh = { workspace = true, features = ["derive", "std"]}
|
borsh = { workspace = true, features = ["derive", "std"]}
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
cuprate-test-utils = {path = "../../test-utils"}
|
cuprate-test-utils = { workspace = true }
|
||||||
|
|
||||||
tokio = { workspace = true, features = ["rt-multi-thread", "macros"]}
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"]}
|
||||||
|
|
||||||
|
|
|
@ -10,9 +10,9 @@ default = ["borsh"]
|
||||||
borsh = ["dep:borsh", "cuprate-pruning/borsh"]
|
borsh = ["dep:borsh", "cuprate-pruning/borsh"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cuprate-helper = { path = "../../helper", features = ["asynch"], default-features = false }
|
cuprate-helper = { workspace = true, features = ["asynch"], default-features = false }
|
||||||
cuprate-wire = { path = "../../net/wire", features = ["tracing"] }
|
cuprate-wire = { workspace = true, features = ["tracing"] }
|
||||||
cuprate-pruning = { path = "../../pruning" }
|
cuprate-pruning = { workspace = true }
|
||||||
|
|
||||||
tokio = { workspace = true, features = ["net", "sync", "macros", "time", "rt", "rt-multi-thread"]}
|
tokio = { workspace = true, features = ["net", "sync", "macros", "time", "rt", "rt-multi-thread"]}
|
||||||
tokio-util = { workspace = true, features = ["codec"] }
|
tokio-util = { workspace = true, features = ["codec"] }
|
||||||
|
@ -29,7 +29,7 @@ hex-literal = { workspace = true }
|
||||||
borsh = { workspace = true, features = ["derive", "std"], optional = true }
|
borsh = { workspace = true, features = ["derive", "std"], optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
cuprate-test-utils = { path = "../../test-utils" }
|
cuprate-test-utils = { workspace = true }
|
||||||
|
|
||||||
hex = { workspace = true, features = ["std"] }
|
hex = { workspace = true, features = ["std"] }
|
||||||
tokio-test = { workspace = true }
|
tokio-test = { workspace = true }
|
||||||
|
|
|
@ -6,15 +6,15 @@ license = "MIT"
|
||||||
authors = ["Boog900"]
|
authors = ["Boog900"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cuprate-constants = { path = "../../constants" }
|
cuprate-constants = { workspace = true }
|
||||||
cuprate-fixed-bytes = { path = "../../net/fixed-bytes" }
|
cuprate-fixed-bytes = { workspace = true }
|
||||||
cuprate-wire = { path = "../../net/wire" }
|
cuprate-wire = { workspace = true }
|
||||||
cuprate-p2p-core = { path = "../p2p-core", features = ["borsh"] }
|
cuprate-p2p-core = { workspace = true, features = ["borsh"] }
|
||||||
cuprate-address-book = { path = "../address-book" }
|
cuprate-address-book = { workspace = true }
|
||||||
cuprate-pruning = { path = "../../pruning" }
|
cuprate-pruning = { workspace = true }
|
||||||
cuprate-helper = { path = "../../helper", features = ["asynch"], default-features = false }
|
cuprate-helper = { workspace = true, features = ["asynch"], default-features = false }
|
||||||
cuprate-async-buffer = { path = "../async-buffer" }
|
cuprate-async-buffer = { workspace = true }
|
||||||
cuprate-types = { path = "../../types", default-features = false }
|
cuprate-types = { workspace = true, default-features = false }
|
||||||
|
|
||||||
monero-serai = { workspace = true, features = ["std"] }
|
monero-serai = { workspace = true, features = ["std"] }
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ tracing = { workspace = true, features = ["std", "attributes"] }
|
||||||
borsh = { workspace = true, features = ["derive", "std"] }
|
borsh = { workspace = true, features = ["derive", "std"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
cuprate-test-utils = { path = "../../test-utils" }
|
cuprate-test-utils = { workspace = true }
|
||||||
indexmap = { workspace = true }
|
indexmap = { workspace = true }
|
||||||
proptest = { workspace = true }
|
proptest = { workspace = true }
|
||||||
tokio-test = { workspace = true }
|
tokio-test = { workspace = true }
|
||||||
|
|
|
@ -10,7 +10,7 @@ default = []
|
||||||
borsh = ["dep:borsh"]
|
borsh = ["dep:borsh"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cuprate-constants = { path = "../constants" }
|
cuprate-constants = { workspace = true }
|
||||||
|
|
||||||
thiserror = { workspace = true }
|
thiserror = { workspace = true }
|
||||||
|
|
||||||
|
|
|
@ -13,10 +13,10 @@ default = ["dummy", "serde"]
|
||||||
dummy = []
|
dummy = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cuprate-epee-encoding = { path = "../../net/epee-encoding", default-features = false }
|
cuprate-epee-encoding = { workspace = true, default-features = false }
|
||||||
cuprate-json-rpc = { path = "../json-rpc", default-features = false }
|
cuprate-json-rpc = { workspace = true, default-features = false }
|
||||||
cuprate-rpc-types = { path = "../types", features = ["serde", "epee"], default-features = false }
|
cuprate-rpc-types = { workspace = true, features = ["serde", "epee"], default-features = false }
|
||||||
cuprate-helper = { path = "../../helper", features = ["asynch"], default-features = false }
|
cuprate-helper = { workspace = true, features = ["asynch"], default-features = false }
|
||||||
|
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
axum = { version = "0.7.5", features = ["json"], default-features = false }
|
axum = { version = "0.7.5", features = ["json"], default-features = false }
|
||||||
|
@ -26,7 +26,7 @@ paste = { workspace = true }
|
||||||
futures = { workspace = true }
|
futures = { workspace = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
cuprate-test-utils = { path = "../../test-utils" }
|
cuprate-test-utils = { workspace = true }
|
||||||
|
|
||||||
axum = { version = "0.7.5", features = ["json", "tokio", "http2"] }
|
axum = { version = "0.7.5", features = ["json", "tokio", "http2"] }
|
||||||
serde_json = { workspace = true, features = ["std"] }
|
serde_json = { workspace = true, features = ["std"] }
|
||||||
|
|
|
@ -14,15 +14,15 @@ serde = ["dep:serde", "cuprate-fixed-bytes/serde"]
|
||||||
epee = ["dep:cuprate-epee-encoding"]
|
epee = ["dep:cuprate-epee-encoding"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cuprate-epee-encoding = { path = "../../net/epee-encoding", optional = true }
|
cuprate-epee-encoding = { workspace = true, optional = true }
|
||||||
cuprate-fixed-bytes = { path = "../../net/fixed-bytes" }
|
cuprate-fixed-bytes = { workspace = true }
|
||||||
cuprate-types = { path = "../../types", default-features = false, features = ["epee", "serde"] }
|
cuprate-types = { workspace = true, default-features = false, features = ["epee", "serde"] }
|
||||||
|
|
||||||
paste = { workspace = true }
|
paste = { workspace = true }
|
||||||
serde = { workspace = true, optional = true }
|
serde = { workspace = true, optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
cuprate-test-utils = { path = "../../test-utils" }
|
cuprate-test-utils = { workspace = true }
|
||||||
|
|
||||||
serde = { workspace = true }
|
serde = { workspace = true }
|
||||||
serde_json = { workspace = true }
|
serde_json = { workspace = true }
|
||||||
|
|
|
@ -18,11 +18,11 @@ redb-memory = ["cuprate-database/redb-memory"]
|
||||||
service = ["dep:thread_local", "dep:rayon", "cuprate-helper/thread"]
|
service = ["dep:thread_local", "dep:rayon", "cuprate-helper/thread"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cuprate-database = { path = "../database" }
|
cuprate-database = { workspace = true }
|
||||||
cuprate-database-service = { path = "../service" }
|
cuprate-database-service = { workspace = true }
|
||||||
cuprate-helper = { path = "../../helper", features = ["fs", "map"] }
|
cuprate-helper = { workspace = true, features = ["fs", "map", "crypto"] }
|
||||||
cuprate-types = { path = "../../types", features = ["blockchain"] }
|
cuprate-types = { workspace = true, features = ["blockchain"] }
|
||||||
cuprate-pruning = { path = "../../pruning" }
|
cuprate-pruning = { workspace = true }
|
||||||
|
|
||||||
bitflags = { workspace = true, features = ["std", "serde", "bytemuck"] }
|
bitflags = { workspace = true, features = ["std", "serde", "bytemuck"] }
|
||||||
bytemuck = { workspace = true, features = ["must_cast", "derive", "min_const_generics", "extern_crate_alloc"] }
|
bytemuck = { workspace = true, features = ["must_cast", "derive", "min_const_generics", "extern_crate_alloc"] }
|
||||||
|
@ -37,9 +37,9 @@ thread_local = { workspace = true, optional = true }
|
||||||
rayon = { workspace = true, optional = true }
|
rayon = { workspace = true, optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
cuprate-constants = { path = "../../constants" }
|
cuprate-constants = { workspace = true }
|
||||||
cuprate-helper = { path = "../../helper", features = ["thread", "cast"] }
|
cuprate-helper = { workspace = true, features = ["thread", "cast"] }
|
||||||
cuprate-test-utils = { path = "../../test-utils" }
|
cuprate-test-utils = { workspace = true }
|
||||||
|
|
||||||
tokio = { workspace = true, features = ["full"] }
|
tokio = { workspace = true, features = ["full"] }
|
||||||
tempfile = { workspace = true }
|
tempfile = { workspace = true }
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
//! Output functions.
|
//! Output functions.
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------- Import
|
//---------------------------------------------------------------------------------------------------- Import
|
||||||
use curve25519_dalek::{constants::ED25519_BASEPOINT_POINT, edwards::CompressedEdwardsY, Scalar};
|
use curve25519_dalek::edwards::CompressedEdwardsY;
|
||||||
use monero_serai::{generators::H, transaction::Timelock};
|
use monero_serai::transaction::Timelock;
|
||||||
|
|
||||||
use cuprate_database::{
|
use cuprate_database::{
|
||||||
RuntimeError, {DatabaseRo, DatabaseRw},
|
RuntimeError, {DatabaseRo, DatabaseRw},
|
||||||
};
|
};
|
||||||
|
use cuprate_helper::crypto::compute_zero_commitment;
|
||||||
use cuprate_helper::map::u64_to_timelock;
|
use cuprate_helper::map::u64_to_timelock;
|
||||||
use cuprate_types::OutputOnChain;
|
use cuprate_types::OutputOnChain;
|
||||||
|
|
||||||
|
@ -155,9 +156,7 @@ pub fn output_to_output_on_chain(
|
||||||
amount: Amount,
|
amount: Amount,
|
||||||
table_tx_unlock_time: &impl DatabaseRo<TxUnlockTime>,
|
table_tx_unlock_time: &impl DatabaseRo<TxUnlockTime>,
|
||||||
) -> Result<OutputOnChain, RuntimeError> {
|
) -> Result<OutputOnChain, RuntimeError> {
|
||||||
// FIXME: implement lookup table for common values:
|
let commitment = compute_zero_commitment(amount);
|
||||||
// <https://github.com/monero-project/monero/blob/c8214782fb2a769c57382a999eaf099691c836e7/src/ringct/rctOps.cpp#L322>
|
|
||||||
let commitment = ED25519_BASEPOINT_POINT + *H * Scalar::from(amount);
|
|
||||||
|
|
||||||
let time_lock = if output
|
let time_lock = if output
|
||||||
.output_flags
|
.output_flags
|
||||||
|
|
|
@ -2,10 +2,10 @@
|
||||||
|
|
||||||
//---------------------------------------------------------------------------------------------------- Import
|
//---------------------------------------------------------------------------------------------------- Import
|
||||||
use bytemuck::TransparentWrapper;
|
use bytemuck::TransparentWrapper;
|
||||||
use curve25519_dalek::{constants::ED25519_BASEPOINT_POINT, Scalar};
|
|
||||||
use monero_serai::transaction::{Input, Timelock, Transaction};
|
use monero_serai::transaction::{Input, Timelock, Transaction};
|
||||||
|
|
||||||
use cuprate_database::{DatabaseRo, DatabaseRw, RuntimeError, StorableVec};
|
use cuprate_database::{DatabaseRo, DatabaseRw, RuntimeError, StorableVec};
|
||||||
|
use cuprate_helper::crypto::compute_zero_commitment;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
ops::{
|
ops::{
|
||||||
|
@ -136,12 +136,9 @@ pub fn add_tx(
|
||||||
.enumerate()
|
.enumerate()
|
||||||
.map(|(i, output)| {
|
.map(|(i, output)| {
|
||||||
// Create commitment.
|
// Create commitment.
|
||||||
// <https://github.com/Cuprate/cuprate/pull/102#discussion_r1559489302>
|
|
||||||
// FIXME: implement lookup table for common values:
|
|
||||||
// <https://github.com/monero-project/monero/blob/c8214782fb2a769c57382a999eaf099691c836e7/src/ringct/rctOps.cpp#L322>
|
|
||||||
let commitment = if miner_tx {
|
let commitment = if miner_tx {
|
||||||
ED25519_BASEPOINT_POINT
|
compute_zero_commitment(output.amount.unwrap_or(0))
|
||||||
+ *monero_serai::generators::H * Scalar::from(output.amount.unwrap_or(0))
|
|
||||||
} else {
|
} else {
|
||||||
proofs
|
proofs
|
||||||
.as_ref()
|
.as_ref()
|
||||||
|
|
|
@ -9,8 +9,8 @@ repository = "https://github.com/Cuprate/cuprate/tree/main/storage/service"
|
||||||
keywords = ["cuprate", "service", "database"]
|
keywords = ["cuprate", "service", "database"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cuprate-database = { path = "../database" }
|
cuprate-database = { workspace = true }
|
||||||
cuprate-helper = { path = "../../helper", features = ["fs", "thread", "map"] }
|
cuprate-helper = { workspace = true, features = ["fs", "thread", "map"] }
|
||||||
|
|
||||||
serde = { workspace = true, optional = true }
|
serde = { workspace = true, optional = true }
|
||||||
rayon = { workspace = true }
|
rayon = { workspace = true }
|
||||||
|
|
|
@ -19,10 +19,10 @@ service = ["dep:tower", "dep:rayon", "dep:cuprate-database-service"]
|
||||||
serde = ["dep:serde", "cuprate-database/serde", "cuprate-database-service/serde"]
|
serde = ["dep:serde", "cuprate-database/serde", "cuprate-database-service/serde"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cuprate-database = { path = "../database", features = ["heed"] }
|
cuprate-database = { workspace = true, features = ["heed"] }
|
||||||
cuprate-database-service = { path = "../service", optional = true }
|
cuprate-database-service = { workspace = true, optional = true }
|
||||||
cuprate-types = { path = "../../types" }
|
cuprate-types = { workspace = true }
|
||||||
cuprate-helper = { path = "../../helper", default-features = false, features = ["constants"] }
|
cuprate-helper = { workspace = true, default-features = false, features = ["constants"] }
|
||||||
|
|
||||||
monero-serai = { workspace = true, features = ["std"] }
|
monero-serai = { workspace = true, features = ["std"] }
|
||||||
bytemuck = { workspace = true, features = ["must_cast", "derive", "min_const_generics", "extern_crate_alloc"] }
|
bytemuck = { workspace = true, features = ["must_cast", "derive", "min_const_generics", "extern_crate_alloc"] }
|
||||||
|
@ -37,7 +37,7 @@ rayon = { workspace = true, optional = true }
|
||||||
serde = { workspace = true, optional = true }
|
serde = { workspace = true, optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
cuprate-test-utils = { path = "../../test-utils" }
|
cuprate-test-utils = { workspace = true }
|
||||||
|
|
||||||
tokio = { workspace = true }
|
tokio = { workspace = true }
|
||||||
tempfile = { workspace = true }
|
tempfile = { workspace = true }
|
||||||
|
|
|
@ -6,10 +6,10 @@ license = "MIT"
|
||||||
authors = ["Boog900", "hinto-janai"]
|
authors = ["Boog900", "hinto-janai"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cuprate-types = { path = "../types" }
|
cuprate-types = { workspace = true }
|
||||||
cuprate-helper = { path = "../helper", features = ["map", "tx"] }
|
cuprate-helper = { workspace = true, features = ["map", "tx"] }
|
||||||
cuprate-wire = { path = "../net/wire" }
|
cuprate-wire = { workspace = true }
|
||||||
cuprate-p2p-core = { path = "../p2p/p2p-core", features = ["borsh"] }
|
cuprate-p2p-core = { workspace = true, features = ["borsh"] }
|
||||||
|
|
||||||
hex = { workspace = true }
|
hex = { workspace = true }
|
||||||
hex-literal = { workspace = true }
|
hex-literal = { workspace = true }
|
||||||
|
|
|
@ -18,9 +18,9 @@ json = ["hex", "dep:cuprate-helper"]
|
||||||
hex = ["dep:hex"]
|
hex = ["dep:hex"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cuprate-epee-encoding = { path = "../net/epee-encoding", optional = true }
|
cuprate-epee-encoding = { workspace = true, optional = true, features = ["std"] }
|
||||||
cuprate-helper = { path = "../helper", optional = true, features = ["cast"] }
|
cuprate-helper = { workspace = true, optional = true, features = ["cast"] }
|
||||||
cuprate-fixed-bytes = { path = "../net/fixed-bytes" }
|
cuprate-fixed-bytes = { workspace = true }
|
||||||
|
|
||||||
bytes = { workspace = true }
|
bytes = { workspace = true }
|
||||||
curve25519-dalek = { workspace = true }
|
curve25519-dalek = { workspace = true }
|
||||||
|
|
Loading…
Reference in a new issue