`create_send` issues. Has anything changed with the create_send command since the last update?

Hi,

I run a local script that sends tokens out via the Counterparty RPC commands. I was running it fine for the past few weeks, but today after updating to the latest version create_send is giving me this error: {u’message’: u’Invalid params’, u’code’: -32602}

I am using Python and trying to send using this payload:

payload = {
    “method”: “create_send”,
    “params”: {
        “source”: my_address,
        “destination”: to_address,
        “quantity”: int(amount),
        “asset”: asset,
    },
    “jsonrpc”: “2.0”,
    “id”: 0,
  }

where my_address, to_address, asset and amount are all known valid.

Other RPC commands work fine (get_balances, get_running_info, etc.). This same script was working prior to updating, so I am thinking that something has changed with the create_send command somehow? Or if not could anyone think of what it is I am doing wrong? I’d appreciate any help anyone might have.

Thanks

Hi,


I see an issue on GitHub created https://github.com/CounterpartyXCP/counterpartyd/issues/378 (possibly by you) so I’m sure developers will be looking into this shortly :wink:

Hi,

Yes I am the one who created that issue on the github (on advice from IRC). Thanks.