mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 03:30:37 +00:00
42aa80e059
Addresses issue #4833 Removes implemented methods from the forbidden method list. The forbidden list seems to have been created as a bugfix before the filters methods were implemented. Now that the filter methods are implemented, these entries are causing unexpected behaviour.
42 lines
705 B
Go
42 lines
705 B
Go
package rpc
|
|
|
|
import "encoding/json"
|
|
|
|
type AllowList map[string]struct{}
|
|
|
|
func (a *AllowList) UnmarshalJSON(data []byte) error {
|
|
var keys []string
|
|
err := json.Unmarshal(data, &keys)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
realA := make(map[string]struct{})
|
|
|
|
for _, k := range keys {
|
|
realA[k] = struct{}{}
|
|
}
|
|
|
|
*a = realA
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalJSON returns *m as the JSON encoding of
|
|
func (a *AllowList) MarshalJSON() ([]byte, error) {
|
|
var realA map[string]struct{} = *a
|
|
keys := make([]string, len(realA))
|
|
i := 0
|
|
for key := range realA {
|
|
keys[i] = key
|
|
i++
|
|
}
|
|
return json.Marshal(keys)
|
|
}
|
|
|
|
type ForbiddenList map[string]struct{}
|
|
|
|
func newForbiddenList() ForbiddenList {
|
|
return ForbiddenList{}
|
|
}
|