in reply to Re^3: JSON / Bitcoind API 500 internal error
in thread JSON / Bitcoind API 500 internal error
I manually debuged and could make sure that the problem is here:
&ReadParse(*data);
$btc = $data{"amount"}; #the value being parsed is 0.01 or any other valid btc value.
The above does not work as a param for the bitcoin api, but it works:
$btc = 0.01;