Advertisement
ynifor

Untitled

Oct 26th, 2024
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. go-ethereum/accounts/abi/bind/base.go
  2. func (c *BoundContract) UnpackLogIntoMap(out map[string]interface{}, event string, log types.Log) error
  3.  
  4. go-ethereum/accounts/abi/topics.go
  5. func ParseTopicsIntoMap(out map[string]interface{}, fields Arguments, topics []common.Hash) error
  6.  
  7. parseTopicWithSetter
  8. if len(fields) != len(topics) {
  9. return errors.New("topic/field count mismatch")
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement