-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a95cbc
commit 9c4d129
Showing
4 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
use crate::util::{mining::mine_until_out_bootstrap_period, transaction::relay_tx}; | ||
use crate::utils::wait_until; | ||
use crate::{Net, Node, Spec}; | ||
use ckb_network::SupportProtocols; | ||
|
||
const ALWAYS_SUCCESS_SCRIPT_CYCLE: u64 = 537; | ||
|
||
pub struct DeclaredWrongCycles; | ||
|
||
impl Spec for DeclaredWrongCycles { | ||
crate::setup!(num_nodes: 1); | ||
|
||
fn run(&self, nodes: &mut Vec<Node>) { | ||
let node0 = &mut nodes[0]; | ||
mine_until_out_bootstrap_period(node0); | ||
|
||
let mut net = Net::new( | ||
self.name(), | ||
node0.consensus(), | ||
vec![SupportProtocols::Relay], | ||
); | ||
net.connect(node0); | ||
|
||
let tx = node0.new_transaction_spend_tip_cellbase(); | ||
|
||
relay_tx(&net, &node0, tx, ALWAYS_SUCCESS_SCRIPT_CYCLE + 1); | ||
|
||
let result = wait_until(5, || { | ||
let tx_pool_info = node0.get_tip_tx_pool_info(); | ||
tx_pool_info.orphan.value() == 0 && tx_pool_info.pending.value() == 0 | ||
}); | ||
assert!(result, "Declared wrong cycles should be rejected"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters