Skip to content

Commit

Permalink
remove allowlist events
Browse files Browse the repository at this point in the history
  • Loading branch information
ceyonur committed Feb 27, 2024
1 parent 0c3802c commit e8f5cbf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions accounts/abi/bind/precompilebind/precompile_bind.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,9 @@ func createPrecompileHook(abifilename string, template string) bind.BindHook {
for key := range allowlist.AllowListABI.Methods {
delete(funcs, key)
}
for events := range allowlist.AllowListABI.Events {
delete(contract.Events, events)
}
}

precompileContract := &tmplPrecompileContract{
Expand Down

0 comments on commit e8f5cbf

Please sign in to comment.