Merge pull request #3518 from fjl/ethclient-dependency-cleanup

core/types: dependency cleanup
This commit is contained in:
Péter Szilágyi
2017-01-06 15:42:03 +02:00
committed by GitHub
45 changed files with 245 additions and 268 deletions

View File

@ -31,8 +31,8 @@ type Argument struct {
func (a *Argument) UnmarshalJSON(data []byte) error {
var extarg struct {
Name string
Type string
Name string
Type string
Indexed bool
}
err := json.Unmarshal(data, &extarg)