mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
s/BigInt/Long/
This commit is contained in:
parent
c104779057
commit
1c5ed0d5f3
1 changed files with 1 additions and 1 deletions
|
|
@ -278,7 +278,7 @@ func (b *Uint64) UnmarshalGraphQL(input interface{}) error {
|
||||||
case int32:
|
case int32:
|
||||||
*b = Uint64(input)
|
*b = Uint64(input)
|
||||||
default:
|
default:
|
||||||
err = fmt.Errorf("Unexpected type for BigInt: %v", input)
|
err = fmt.Errorf("Unexpected type for Long: %v", input)
|
||||||
}
|
}
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue