Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
Signed-off-by: Eval EXEC <execvy@gmail.com>
  • Loading branch information
eval-exec committed Feb 27, 2024
1 parent e55400f commit 1c326e9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 12 deletions.
9 changes: 1 addition & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ tokio = { version = "1", features = ["net", "io-util", "rt"] }
futures = "0.3"

# remove this line when ckb-vm stick the version of ckb-vm-definitions
ckb-vm-definitions = "=0.21.3"
# ckb-vm-definitions = "=0.21.3"

[target.'cfg(unix)'.dependencies]
tui = "0.6.0"
Expand Down
8 changes: 5 additions & 3 deletions src/subcommands/rpc.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
use ckb_jsonrpc_types::{self as rpc_types, Alert, BlockNumber, EpochNumber, Transaction};
use ckb_types::{packed, prelude::*, H256};
use ckb_jsonrpc_types::{
self as rpc_types, Alert, BlockNumber, EpochNumber, JsonBytes, Transaction,
};
use ckb_types::{bytes::Bytes, packed, prelude::*, H256};
use clap::{App, Arg, ArgMatches};
use ipnetwork::IpNetwork;
use multiaddr::Multiaddr;
Expand All @@ -11,7 +13,7 @@ use std::time::Duration;
use super::{CliSubCommand, Output};
use crate::utils::arg_parser::{
ArgParser, DurationParser, FeeRateStatisticsTargetParser, FilePathParser, FixedHashParser,
FromStrParser,
FromStrParser, HexParser,
};
use crate::utils::rpc::{
parse_order, BannedAddr, BlockEconomicState, BlockView, EpochView, HeaderView, HttpRpcClient,
Expand Down

0 comments on commit 1c326e9

Please sign in to comment.