I seem to have a bit of a problem here....
I have the following options in my Coino.conf file :
walletnotify=~/coino/scripts/notify.sh %s coino wallet
blocknotify=~/coino/scripts/notify.sh %s coino block
And I have the following in notify.sh
#!/bin/bash
F=/mnt/hdd/logs/coino/${3}_transaction.log
D=`date +"%s"`
echo '{"date":'${D}',"txId":"'${1}'","coin":"'${2}'","processed":false,"type":"'${3}'"}' >> ${F}
I get the block_transaction.log file created with block transactions. However, I am not getting the wallet_transaction.log file created when receiving payments into my wallet or sending coins from it !!!!
The entries in the block_transaction.log look like the following
...
{"date":1393490961,"txId":"88ad9624345b734ec72692f10ab460d02dfffd517387c13f1a74ce2f8fd23451","coin":"coino","processed":false,"type":"block"}
{"date":1393490965,"txId":"4c9a9e4774747623bccae4e982199218da0d7c9e0ba7af2135d63d1ccb7fe1ad","coin":"coino","processed":false,"type":"block"}
{"date":1393491005,"txId":"eb127515c452cd2045e98018b3f2ce1fe40349a0094e11725104fa9ee3758bc1","coin":"coino","processed":false,"type":"block"}
{"date":1393491026,"txId":"cede37adeef15caeec8a4dd76f7f21f61c0f38e0cfa6015ab7d2cda363cef218","coin":"coino","processed":false,"type":"block"}
...
Can anybody tell me why the walletnotify is not running
Well it looks like that the coinod has the option for blocknotify but not walletnotify
running coinod -? shows all available options ...
Was there any reason for leaving this out of the coinod ?