Skip to content

Commit e6e7734

Browse files
authored
Merge branch 'develop' into zhangsoledad/rpc-bump
2 parents a6e8246 + addbca6 commit e6e7734

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

deny.toml

+7-1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,12 @@ ignore = [
7575
"RUSTSEC-2024-0370",
7676
# instant's maintainer no longer maintained, use web-time instead
7777
"RUSTSEC-2024-0384",
78+
# humantime's maintainer no longer maintained
79+
"RUSTSEC-2025-0014",
80+
# paste's maintainer no longer maintained
81+
"RUSTSEC-2024-0436",
82+
# wait https://github.com/tikv/rust-prometheus/issues/538
83+
"RUSTSEC-2024-0437",
7884
#"RUSTSEC-0000-0000",
7985
#{ id = "RUSTSEC-0000-0000", reason = "you can specify a reason the advisory is ignored" },
8086
#"[email protected]", # you can also ignore yanked crate versions if you wish
@@ -103,7 +109,7 @@ allow = [
103109
"ISC",
104110
"CC0-1.0",
105111
"Unicode-3.0",
106-
"Zlib"
112+
"Zlib",
107113
#"Apache-2.0 WITH LLVM-exception",
108114
]
109115
# The confidence threshold for detecting a license from license text.

devtools/smoking_test/check-migrate.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if [ ${EXIT_CODE} == 0 ]; then
1111
EXIT_CODE="${PIPESTATUS[0]}"
1212
echo "migrate exit code is "${EXIT_CODE}
1313
if [ ${EXIT_CODE} != 0 ]; then
14-
echo "migrate faile,please try again"
14+
echo "migrate failed,please try again"
1515
exit ${EXIT_CODE}
1616
else
1717
echo "DB migrate done"

script/src/scheduler.rs

-3
Original file line numberDiff line numberDiff line change
@@ -882,9 +882,6 @@ where
882882

883883
// Create a new VM instance with syscalls attached
884884
fn create_dummy_vm(&self, id: &VmId) -> Result<(VmContext<DL>, Machine), Error> {
885-
// The code here looks slightly weird, since I don't want to copy over all syscall
886-
// impls here again. Ideally, this scheduler package should be merged with ckb-script,
887-
// or simply replace ckb-script. That way, the quirks here will be eliminated.
888885
let version = &self.sg_data.sg_info.script_version;
889886
let core_machine = CoreMachineType::new(
890887
version.vm_isa(),

util/fee-estimator/src/estimator/confirmation_fraction.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ struct TxRecord {
7272
/// In inner, we group samples by predefined fee_rate buckets.
7373
/// To estimator fee_rate for a confirm target(how many blocks that a tx can get committed),
7474
/// we travel through fee_rate buckets, try to find a fee_rate X to let a tx get committed
75-
/// with high probilities within confirm target blocks.
75+
/// with high probabilities within confirm target blocks.
7676
///
7777
#[derive(Clone)]
7878
pub struct Algorithm {

0 commit comments

Comments
 (0)