mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 03:21:08 +03:00
988a05f023
* wip * commit * add block level validation rule around NRD kernels and HF3 block height * wip * test coverage for kernel ser/deser for NRD kernels * add some type safety around ser/deser of nrd relative height * cleanup * cleanup tx sig handling and add tests around NRD kernel sig * test coverage for chain apply block containing NRD kernel * verify kernel variants when adding tx to pool NRD kernels will not be accepted until HF3 * add txpool test for NRD kernel handling * fix merge * fix api for NRD kernels * commit * wip - feature flag for NRD kernel support * wip * global config and thread local feature flag for NRD kernel support * add feature flag support for NRD kernels default to false when starting up node allow it to be set to true in context of individual tests * feature flag * explicit testing of NRD kernel via feature flag * add chain_type and feature flag logging on startup * PR feedback and cleanup * PR feedback
216 lines
6.6 KiB
Rust
216 lines
6.6 KiB
Rust
// Copyright 2020 The Grin Developers
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
pub mod common;
|
|
|
|
use self::core::core::hash::Hashed;
|
|
use self::core::core::verifier_cache::LruVerifierCache;
|
|
use self::core::core::{
|
|
Block, BlockHeader, HeaderVersion, KernelFeatures, NRDRelativeHeight, Transaction,
|
|
};
|
|
use self::core::global;
|
|
use self::core::pow::Difficulty;
|
|
use self::core::{consensus, libtx};
|
|
use self::keychain::{ExtKeychain, Keychain};
|
|
use self::pool::types::PoolError;
|
|
use self::util::RwLock;
|
|
use crate::common::*;
|
|
use grin_core as core;
|
|
use grin_keychain as keychain;
|
|
use grin_pool as pool;
|
|
use grin_util as util;
|
|
use std::sync::Arc;
|
|
|
|
#[test]
|
|
fn test_nrd_kernel_verification_block_version() {
|
|
util::init_test_logger();
|
|
global::set_local_chain_type(global::ChainTypes::AutomatedTesting);
|
|
global::set_local_nrd_enabled(true);
|
|
|
|
let keychain: ExtKeychain = Keychain::from_random_seed(false).unwrap();
|
|
|
|
let db_root = ".grin_nrd_kernels";
|
|
clean_output_dir(db_root.into());
|
|
|
|
let mut chain = ChainAdapter::init(db_root.into()).unwrap();
|
|
|
|
let verifier_cache = Arc::new(RwLock::new(LruVerifierCache::new()));
|
|
|
|
// Initialize the chain/txhashset with an initial block
|
|
// so we have a non-empty UTXO set.
|
|
let add_block = |prev_header: BlockHeader, txs: Vec<Transaction>, chain: &mut ChainAdapter| {
|
|
let height = prev_header.height + 1;
|
|
let key_id = ExtKeychain::derive_key_id(1, height as u32, 0, 0, 0);
|
|
let fee = txs.iter().map(|x| x.fee()).sum();
|
|
let reward = libtx::reward::output(
|
|
&keychain,
|
|
&libtx::ProofBuilder::new(&keychain),
|
|
&key_id,
|
|
fee,
|
|
false,
|
|
)
|
|
.unwrap();
|
|
let mut block = Block::new(&prev_header, txs, Difficulty::min(), reward).unwrap();
|
|
|
|
// Set the prev_root to the prev hash for testing purposes (no MMR to obtain a root from).
|
|
block.header.prev_root = prev_header.hash();
|
|
|
|
chain.update_db_for_block(&block);
|
|
block
|
|
};
|
|
|
|
let block = add_block(BlockHeader::default(), vec![], &mut chain);
|
|
let header = block.header;
|
|
|
|
// Now create tx to spend that first coinbase (now matured).
|
|
// Provides us with some useful outputs to test with.
|
|
let initial_tx = test_transaction_spending_coinbase(&keychain, &header, vec![10, 20, 30, 40]);
|
|
|
|
// Mine that initial tx so we can spend it with multiple txs
|
|
let mut block = add_block(header, vec![initial_tx], &mut chain);
|
|
let mut header = block.header;
|
|
|
|
// Initialize a new pool with our chain adapter.
|
|
let mut pool = test_setup(Arc::new(chain.clone()), verifier_cache);
|
|
|
|
let tx_1 = test_transaction_with_kernel_features(
|
|
&keychain,
|
|
vec![10, 20],
|
|
vec![24],
|
|
KernelFeatures::NoRecentDuplicate {
|
|
fee: 6,
|
|
relative_height: NRDRelativeHeight::new(1440).unwrap(),
|
|
},
|
|
);
|
|
|
|
assert!(header.version < HeaderVersion(4));
|
|
|
|
assert_eq!(
|
|
pool.add_to_pool(test_source(), tx_1.clone(), false, &header),
|
|
Err(PoolError::NRDKernelPreHF3)
|
|
);
|
|
|
|
// Now mine several more blocks out to HF3
|
|
for _ in 0..7 {
|
|
block = add_block(header, vec![], &mut chain);
|
|
header = block.header;
|
|
}
|
|
assert_eq!(header.height, consensus::TESTING_THIRD_HARD_FORK);
|
|
assert_eq!(header.version, HeaderVersion(4));
|
|
|
|
// Now confirm we can successfully add transaction with NRD kernel to txpool.
|
|
assert_eq!(
|
|
pool.add_to_pool(test_source(), tx_1.clone(), false, &header),
|
|
Ok(()),
|
|
);
|
|
|
|
assert_eq!(pool.total_size(), 1);
|
|
|
|
let txs = pool.prepare_mineable_transactions().unwrap();
|
|
assert_eq!(txs.len(), 1);
|
|
|
|
// Cleanup db directory
|
|
clean_output_dir(db_root.into());
|
|
}
|
|
|
|
#[test]
|
|
fn test_nrd_kernel_verification_nrd_disabled() {
|
|
util::init_test_logger();
|
|
global::set_local_chain_type(global::ChainTypes::AutomatedTesting);
|
|
|
|
let keychain: ExtKeychain = Keychain::from_random_seed(false).unwrap();
|
|
|
|
let db_root = ".grin_nrd_kernel_disabled";
|
|
clean_output_dir(db_root.into());
|
|
|
|
let mut chain = ChainAdapter::init(db_root.into()).unwrap();
|
|
|
|
let verifier_cache = Arc::new(RwLock::new(LruVerifierCache::new()));
|
|
|
|
// Initialize the chain/txhashset with an initial block
|
|
// so we have a non-empty UTXO set.
|
|
let add_block = |prev_header: BlockHeader, txs: Vec<Transaction>, chain: &mut ChainAdapter| {
|
|
let height = prev_header.height + 1;
|
|
let key_id = ExtKeychain::derive_key_id(1, height as u32, 0, 0, 0);
|
|
let fee = txs.iter().map(|x| x.fee()).sum();
|
|
let reward = libtx::reward::output(
|
|
&keychain,
|
|
&libtx::ProofBuilder::new(&keychain),
|
|
&key_id,
|
|
fee,
|
|
false,
|
|
)
|
|
.unwrap();
|
|
let mut block = Block::new(&prev_header, txs, Difficulty::min(), reward).unwrap();
|
|
|
|
// Set the prev_root to the prev hash for testing purposes (no MMR to obtain a root from).
|
|
block.header.prev_root = prev_header.hash();
|
|
|
|
chain.update_db_for_block(&block);
|
|
block
|
|
};
|
|
|
|
let block = add_block(BlockHeader::default(), vec![], &mut chain);
|
|
let header = block.header;
|
|
|
|
// Now create tx to spend that first coinbase (now matured).
|
|
// Provides us with some useful outputs to test with.
|
|
let initial_tx = test_transaction_spending_coinbase(&keychain, &header, vec![10, 20, 30, 40]);
|
|
|
|
// Mine that initial tx so we can spend it with multiple txs
|
|
let mut block = add_block(header, vec![initial_tx], &mut chain);
|
|
let mut header = block.header;
|
|
|
|
// Initialize a new pool with our chain adapter.
|
|
let mut pool = test_setup(Arc::new(chain.clone()), verifier_cache);
|
|
|
|
let tx_1 = test_transaction_with_kernel_features(
|
|
&keychain,
|
|
vec![10, 20],
|
|
vec![24],
|
|
KernelFeatures::NoRecentDuplicate {
|
|
fee: 6,
|
|
relative_height: NRDRelativeHeight::new(1440).unwrap(),
|
|
},
|
|
);
|
|
|
|
assert!(header.version < HeaderVersion(4));
|
|
|
|
assert_eq!(
|
|
pool.add_to_pool(test_source(), tx_1.clone(), false, &header),
|
|
Err(PoolError::NRDKernelNotEnabled)
|
|
);
|
|
|
|
// Now mine several more blocks out to HF3
|
|
for _ in 0..7 {
|
|
block = add_block(header, vec![], &mut chain);
|
|
header = block.header;
|
|
}
|
|
assert_eq!(header.height, consensus::TESTING_THIRD_HARD_FORK);
|
|
assert_eq!(header.version, HeaderVersion(4));
|
|
|
|
// NRD kernel support not enabled via feature flag, so not valid.
|
|
assert_eq!(
|
|
pool.add_to_pool(test_source(), tx_1.clone(), false, &header),
|
|
Err(PoolError::NRDKernelNotEnabled)
|
|
);
|
|
|
|
assert_eq!(pool.total_size(), 0);
|
|
|
|
let txs = pool.prepare_mineable_transactions().unwrap();
|
|
assert_eq!(txs.len(), 0);
|
|
|
|
// Cleanup db directory
|
|
clean_output_dir(db_root.into());
|
|
}
|