diff options
Diffstat (limited to 'coder.decodeParam.js')
-rw-r--r-- | coder.decodeParam.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/coder.decodeParam.js b/coder.decodeParam.js index 23b0228e..959e96cf 100644 --- a/coder.decodeParam.js +++ b/coder.decodeParam.js @@ -24,6 +24,8 @@ describe('lib/solidity/coder', function () { test({ type: 'bytes', expected: 'gavofyork', value: '0000000000000000000000000000000000000000000000000000000000000020' + '0000000000000000000000000000000000000000000000000000000000000009' + '6761766f66796f726b0000000000000000000000000000000000000000000000'}); + test({ type: 'int[]', expected: [], value: '0000000000000000000000000000000000000000000000000000000000000020' + + '0000000000000000000000000000000000000000000000000000000000000000'}); test({ type: 'int[]', expected: [new bn(3)], value: '0000000000000000000000000000000000000000000000000000000000000020' + '0000000000000000000000000000000000000000000000000000000000000001' + '0000000000000000000000000000000000000000000000000000000000000003'}); |