diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-08-23 19:39:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-23 19:39:37 +0800 |
commit | 3c48a25762dfab9382791c33a2f5832466077ac3 (patch) | |
tree | 648c275563b46ba45e289774a40a0a761d16fc66 /common | |
parent | 286ec5df40d3707a7a2c98d49c8d324372ed29c2 (diff) | |
parent | 4ee92f2d193225e70c190194d005a6ce80e70236 (diff) | |
download | dexon-3c48a25762dfab9382791c33a2f5832466077ac3.tar dexon-3c48a25762dfab9382791c33a2f5832466077ac3.tar.gz dexon-3c48a25762dfab9382791c33a2f5832466077ac3.tar.bz2 dexon-3c48a25762dfab9382791c33a2f5832466077ac3.tar.lz dexon-3c48a25762dfab9382791c33a2f5832466077ac3.tar.xz dexon-3c48a25762dfab9382791c33a2f5832466077ac3.tar.zst dexon-3c48a25762dfab9382791c33a2f5832466077ac3.zip |
Merge pull request #15014 from rjl493456442/metropolis-eip658
core: add status as a consensus field in receipt
Diffstat (limited to 'common')
-rw-r--r-- | common/bytes.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/bytes.go b/common/bytes.go index c445968f2..66577bbfd 100644 --- a/common/bytes.go +++ b/common/bytes.go @@ -47,6 +47,9 @@ func FromHex(s string) []byte { // // Returns an exact copy of the provided bytes func CopyBytes(b []byte) (copiedBytes []byte) { + if b == nil { + return nil + } copiedBytes = make([]byte, len(b)) copy(copiedBytes, b) |