Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix windows integration test compile error #4424

Merged
merged 3 commits into from
Apr 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use ckb_chain_spec::ChainSpec;
use ckb_error::AnyError;
use ckb_jsonrpc_types::{BlockFilter, BlockTemplate, TxPoolInfo};
use ckb_jsonrpc_types::{PoolTxDetailInfo, TxStatus};
use ckb_logger::{debug, error};
use ckb_logger::{debug, error, info};
use ckb_resource::Resource;
use ckb_types::{
bytes,
Expand Down Expand Up @@ -67,7 +67,7 @@ impl Node {

// Copy node template into node's working directory
let cells_dir = working_dir.join("specs").join("cells");
ckb_logger::info!("working_dir {:?}", working_dir);
info!("working_dir {:?}", working_dir);

fs::create_dir_all(cells_dir).expect("create node's dir");
for file in &[
Expand Down
Loading