mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
account: distinguish 'Unpack' error
This commit is contained in:
parent
f265cc24b4
commit
6f9663653a
1 changed files with 2 additions and 2 deletions
|
|
@ -84,10 +84,10 @@ func (e Error) String() string {
|
|||
|
||||
func (e *Error) Unpack(data []byte) (interface{}, error) {
|
||||
if len(data) < 4 {
|
||||
return "", errors.New("invalid data for unpacking")
|
||||
return "", errors.New("invalid data for unpacking, length is less than 4")
|
||||
}
|
||||
if !bytes.Equal(data[:4], e.ID[:4]) {
|
||||
return "", errors.New("invalid data for unpacking")
|
||||
return "", errors.New("invalid data for unpacking, first four bytes are not equal with error's signature")
|
||||
}
|
||||
return e.Inputs.Unpack(data[4:])
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue