Guard for nil *big.Int

pull/619/head
Taylor Gerring 10 years ago
parent 585aec127c
commit 2efb89d544
  1. 4
      rpc/types.go

@ -83,7 +83,11 @@ func newHexData(input interface{}) *hexdata {
d.data = input.Bytes()
}
case *big.Int:
if input == nil {
d.isNil = true
} else {
d.data = input.Bytes()
}
case int64:
d.data = big.NewInt(input).Bytes()
case uint64:

Loading…
Cancel
Save