fixed block filter args

This commit is contained in:
obscuren 2015-03-26 12:34:59 +01:00
parent b8a667deed
commit 83b0cad766
1 changed files with 1 additions and 1 deletions

View File

@ -482,7 +482,7 @@ func (args *BlockFilterArgs) UnmarshalJSON(b []byte) (err error) {
return NewInsufficientParamsError(len(obj), 1) return NewInsufficientParamsError(len(obj), 1)
} }
args.Earliest, err = toNumber(obj[0].FromBlock) args.Earliest, err = toNumber(obj[0].ToBlock)
if err != nil { if err != nil {
return NewDecodeParamError(fmt.Sprintf("FromBlock %v", err)) return NewDecodeParamError(fmt.Sprintf("FromBlock %v", err))
} }