Hello,
when I try to sign a transaction I get the following error:
coin.js:1290 Uncaught RangeError: Maximum call stack size exceeded at readAsInt (coin.js:1290) at readAsInt (coin.js:1293) at readAsInt (coin.js:1293)
The line 1290-1293 in coin.js
var readAsInt = function(bytes) { if (bytes == 0) return 0; pos++; return buffer[pos-1] + readAsInt(bytes-1) * 256; }
I am signing it with my private key and with the decoded raw transaction.
Hello, when I try to sign a transaction I get the following error:
coin.js:1290 Uncaught RangeError: Maximum call stack size exceeded at readAsInt (coin.js:1290) at readAsInt (coin.js:1293) at readAsInt (coin.js:1293)
The line 1290-1293 in coin.js
var readAsInt = function(bytes) { if (bytes == 0) return 0; pos++; return buffer[pos-1] + readAsInt(bytes-1) * 256; }
I am signing it with my private key and with the decoded raw transaction.What is the issue, any help is appreciated.