mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
accounts/abi: inputs[i] assigned twice
This commit is contained in:
parent
c41e1bd1eb
commit
c6e2e2431a
1 changed files with 2 additions and 1 deletions
|
|
@ -36,9 +36,10 @@ type Event struct {
|
||||||
func (e Event) String() string {
|
func (e Event) String() string {
|
||||||
inputs := make([]string, len(e.Inputs))
|
inputs := make([]string, len(e.Inputs))
|
||||||
for i, input := range e.Inputs {
|
for i, input := range e.Inputs {
|
||||||
inputs[i] = fmt.Sprintf("%v %v", input.Name, input.Type)
|
|
||||||
if input.Indexed {
|
if input.Indexed {
|
||||||
inputs[i] = fmt.Sprintf("%v indexed %v", input.Name, input.Type)
|
inputs[i] = fmt.Sprintf("%v indexed %v", input.Name, input.Type)
|
||||||
|
} else {
|
||||||
|
inputs[i] = fmt.Sprintf("%v %v", input.Name, input.Type)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return fmt.Sprintf("e %v(%v)", e.Name, strings.Join(inputs, ", "))
|
return fmt.Sprintf("e %v(%v)", e.Name, strings.Join(inputs, ", "))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue