Callable assets on testnet (develop branch)

I’ve tried creating a callable asset on testnet with the develop branch but not having much success. Any hints what I might be doing wrong? I’ve tried putting the call date as both a unix epoch date and a timestamp.


counterpartyd --testnet --unconfirmed issuance  --source n4dDvHCATXEnzLJ6NfUMAE86nQFVC2AHpb --asset STORM --quantity 10 --call-date 20141021  --call-price 0 --description STORM


counterpartyd --testnet --unconfirmed issuance  --source n4dDvHCATXEnzLJ6NfUMAE86nQFVC2AHpb --asset PLANET --quantity 10 --call-date 20141021  --call-price 0 --description PLANET


Status: Running v9.42.0 of counterpartyd.
Status: Connecting to database.
Status: Checking version.
Status: Connecting to block explorer.
Status: Connecting to backend.
Status: Resuming parsing.
Block: 302533
Issuance: n4dDvHCATXEnzLJ6NfUMAE86nQFVC2AHpb created 10 of asset STORM, which is indivisible and uncallable, with description ‘STORM’ (68467fb8ffc3c481ec111e5cea85002175c74eb00a4116c7c8ea90ec297a3264) [valid]
Block: 302534
Block: 302535
Issuance: n4dDvHCATXEnzLJ6NfUMAE86nQFVC2AHpb created 10 of asset PLANET, which is indivisible and uncallable, with description ‘PLANET’ (a796bf060f1611f27eea12dba2d1fb45724f9c180dfd8d346fc5a40e289b339f) [valid]

Don’t you need a boolean callable flag?

callable_ (boolean):
Whether the asset is callable or not.

See - https://github.com/CounterpartyXCP/counterpartyd/blob/master/docs/API.rst#create_issuance

Right! See https://github.com/CounterpartyXCP/counterpartyd/blob/master/lib/issuance.py#L49-L57