diff --git a/src/index.js b/src/index.js index 497456e..b21144c 100644 --- a/src/index.js +++ b/src/index.js @@ -22,6 +22,10 @@ const numberToUInt64 = number => { }; const buildOutputScript = outputs => { + if (!Array.isArray(outputs)) { + throw new TypeError(`Expected 'outputs' to be of type 'array', got: '${outputs}'.`); + } + let outputScript = [...numberToCompactSizeUInt(outputs.length)]; for (const [address, value] of outputs) {