You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pubenumFilterChanges<T = Transaction>{/// Empty result.#[serde(with = "empty_array")]#[default]Empty,/// New logs.Logs(Vec<RpcLog>),/// New hashes (block or transactions).Hashes(Vec<B256>),/// New transactions.Transactions(Vec<T>),}
The eth_getFilterChanges can return either of the 3 types but the current code only handles Vec<Log>. So if I pass a filter ID returned from eth_newBlockFilter or eth_newPendingTransactionFilter to Helios' eth_getFilterChanges then I get the following error:
From alloy-rpc-types:
The
eth_getFilterChanges
can return either of the 3 types but the current code only handlesVec<Log>
. So if I pass a filter ID returned frometh_newBlockFilter
oreth_newPendingTransactionFilter
to Helios'eth_getFilterChanges
then I get the following error:The text was updated successfully, but these errors were encountered: