diff --git a/src/tool/subcommands/api_cmd/api_compare_tests.rs b/src/tool/subcommands/api_cmd/api_compare_tests.rs index 96144554c724..96e999044b77 100644 --- a/src/tool/subcommands/api_cmd/api_compare_tests.rs +++ b/src/tool/subcommands/api_cmd/api_compare_tests.rs @@ -1746,7 +1746,8 @@ fn eth_tests_with_tipset(store: &Arc, shared_tipset: &Tipset },)) .unwrap(), ) - .sort_policy(SortPolicy::All), + .sort_policy(SortPolicy::All) + .policy_on_rejected(PolicyOnRejected::PassWithQuasiIdenticalError), RpcTest::identity( EthGetLogs::request((EthFilterSpec { from_block: Some(format!("0x{:x}", shared_tipset.epoch())), @@ -1756,7 +1757,8 @@ fn eth_tests_with_tipset(store: &Arc, shared_tipset: &Tipset },)) .unwrap(), ) - .sort_policy(SortPolicy::All), + .sort_policy(SortPolicy::All) + .policy_on_rejected(PolicyOnRejected::PassWithQuasiIdenticalError), RpcTest::identity( EthGetLogs::request((EthFilterSpec { from_block: Some(format!("0x{:x}", shared_tipset.epoch() - 100)), @@ -1765,7 +1767,8 @@ fn eth_tests_with_tipset(store: &Arc, shared_tipset: &Tipset },)) .unwrap(), ) - .sort_policy(SortPolicy::All), + .sort_policy(SortPolicy::All) + .policy_on_rejected(PolicyOnRejected::PassWithQuasiIdenticalError), RpcTest::identity( EthGetLogs::request((EthFilterSpec { address: Some(EthAddressList::Single( @@ -1775,7 +1778,8 @@ fn eth_tests_with_tipset(store: &Arc, shared_tipset: &Tipset },)) .unwrap(), ) - .sort_policy(SortPolicy::All), + .sort_policy(SortPolicy::All) + .policy_on_rejected(PolicyOnRejected::PassWithQuasiIdenticalError), RpcTest::identity(EthGetFilterLogs::request((FilterID::new().unwrap(),)).unwrap()) .policy_on_rejected(PolicyOnRejected::PassWithIdenticalError), RpcTest::identity(EthGetFilterChanges::request((FilterID::new().unwrap(),)).unwrap())