File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/tool/subcommands/api_cmd Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -406,7 +406,9 @@ fn eth_new_block_filter() -> RpcTestScenario {
406406
407407 if let EthFilterResult :: Hashes ( hashes) = filter_result {
408408 verify_hashes ( & hashes) . await ?;
409- anyhow:: ensure!( prev_hashes != hashes) ;
409+ anyhow:: ensure!(
410+ ( prev_hashes. is_empty( ) && hashes. is_empty( ) ) || prev_hashes != hashes,
411+ ) ;
410412
411413 Ok ( ( ) )
412414 } else {
@@ -632,9 +634,7 @@ pub(super) async fn create_tests(tx: TestTransaction) -> Vec<RpcTestScenario> {
632634 EthUninstallFilter
633635 ) ,
634636 with_methods!(
635- eth_new_block_filter( )
636- . name( "eth_newBlockFilter works" )
637- . ignore( "https://github.com/ChainSafe/forest/issues/6069" ) ,
637+ eth_new_block_filter( ) . name( "eth_newBlockFilter works" ) ,
638638 EthNewBlockFilter ,
639639 EthGetFilterChanges ,
640640 EthUninstallFilter
You can’t perform that action at this time.
0 commit comments