I've been playing with the rpc interface, and using the php library successfully up until now. I'm trying to create a raw transaction.
The console help describes the command thus:
But I'm not clear on how that should translate here. So, for example, the following command (without the carriage returns) works fine in my satoshi client debug window:
\"vout\":2},
{\"txid\":\"b28c740c66726ab2f0397be29f2d25f091b8ab353b98b9ebf9e6ccfd080cdf49\",
\"vout\":3}]
{\"1GTDT3hYk4x4wzaa9k38pRsHy9SPJ7qPzT\":0.006,
\"1ApD64wpNUM6GBeSmKYhsyaNwFot3FMC5y\":0.004}
It generates a raw transaction without problem.
My question is how to pass these parameters via the jsonRPCClient interface.
echo $bitcoin->createrawtransaction( ? );
Thanks in advance,
q