From fbe63f4f6d446c559a51ddd68209e5a47ef60630 Mon Sep 17 00:00:00 2001 From: Eval EXEC Date: Thu, 22 Aug 2024 11:59:50 +0800 Subject: [PATCH 1/2] Integration Test: wait find unverified blocks finish for all specs --- test/src/node.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/test/src/node.rs b/test/src/node.rs index 32ba61baea..cb592154ca 100644 --- a/test/src/node.rs +++ b/test/src/node.rs @@ -701,6 +701,7 @@ impl Node { } }; + self.wait_find_unverified_blocks_finished(); self.wait_tx_pool_ready(); self.set_process_guard(ProcessGuard { From 47dc5ed1fd5eaca86119279d9fbe870ae341910b Mon Sep 17 00:00:00 2001 From: EthanYuan Date: Thu, 22 Aug 2024 09:43:45 +0800 Subject: [PATCH 2/2] add ignore item in deny.toml. --- deny.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/deny.toml b/deny.toml index aadefc53d2..fabff48ef2 100644 --- a/deny.toml +++ b/deny.toml @@ -70,6 +70,10 @@ feature-depth = 1 # A list of advisory IDs to ignore. Note that ignored advisories will still # output a note when they are encountered. ignore = [ +# https://rustsec.org/advisories/RUSTSEC-2024-0363 +# https://github.com/launchbadge/sqlx/issues/3440 +# The queries for the rich indexer receive input parameters via RPC, and the data size is far less than 4GB, so this issue can be temporarily ignored while waiting for sqlx to be fixed. + "RUSTSEC-2024-0363", # https://rustsec.org/advisories/RUSTSEC-2022-0090 # It was sometimes possible for SQLite versions >= 1.0.12, < 3.39.2 to allow an array-bounds overflow when large string were input into SQLite's `printf` function. "RUSTSEC-2022-0090",