diff --git a/rpc/allow_list.go b/rpc/allow_list.go index 1e6ed84e3..ba0997768 100644 --- a/rpc/allow_list.go +++ b/rpc/allow_list.go @@ -37,11 +37,5 @@ func (a *AllowList) MarshalJSON() ([]byte, error) { type ForbiddenList map[string]struct{} func newForbiddenList() ForbiddenList { - return ForbiddenList{ - "eth_newFilter": struct{}{}, - "eth_newPendingTransactionFilter": struct{}{}, - "eth_newBlockFilter": struct{}{}, - "eth_getFilterChanges": struct{}{}, - "eth_uninstallFilter": struct{}{}, - } + return ForbiddenList{} }