mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-21 10:28:10 +00:00
If nil, type doesn't matter
This commit is contained in:
parent
ac03ff6f05
commit
bea3879d6f
1 changed files with 3 additions and 0 deletions
|
|
@ -45,6 +45,9 @@ func (d *hexdata) UnmarshalJSON(b []byte) (err error) {
|
|||
func newHexData(input interface{}) *hexdata {
|
||||
d := new(hexdata)
|
||||
|
||||
if input == nil {
|
||||
d.data = nil
|
||||
}
|
||||
switch input := input.(type) {
|
||||
case []byte:
|
||||
d.data = input
|
||||
|
|
|
|||
Loading…
Reference in a new issue