Fixed error in throwing an error for ABI decode (#539).
This commit is contained in:
parent
34397fa2aa
commit
92c978e5c2
@ -574,7 +574,7 @@ class CoderFixedBytes extends Coder {
|
|||||||
|
|
||||||
decode(data: Uint8Array, offset: number): DecodedResult {
|
decode(data: Uint8Array, offset: number): DecodedResult {
|
||||||
if (data.length < offset + 32) {
|
if (data.length < offset + 32) {
|
||||||
errors.throwError('insufficient data for ' + name + ' type', errors.INVALID_ARGUMENT, {
|
errors.throwError('insufficient data for ' + this.name + ' type', errors.INVALID_ARGUMENT, {
|
||||||
arg: this.localName,
|
arg: this.localName,
|
||||||
coderType: this.name,
|
coderType: this.name,
|
||||||
value: hexlify(data.slice(offset, offset + 32))
|
value: hexlify(data.slice(offset, offset + 32))
|
||||||
|
Loading…
Reference in New Issue
Block a user