BlockNumber as int fix
This commit is contained in:
parent
7cbcd81ddc
commit
e02eedb43e
@ -10,9 +10,9 @@ import (
|
|||||||
|
|
||||||
func blockAge(raw interface{}, number *int64) (err error) {
|
func blockAge(raw interface{}, number *int64) (err error) {
|
||||||
// Parse as integer
|
// Parse as integer
|
||||||
num, ok := raw.(int64)
|
num, ok := raw.(float64)
|
||||||
if ok {
|
if ok {
|
||||||
*number = num
|
*number = int64(num)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user