Hello. Yesterday i have written about missing functionality in Bitleu daemon source code and especially for walletnotify event which is shipped by default in bitcoin source. According to this thread
https://github.com/bitcoin/bitcoin/pull/1974 we have made a fix for Bitleu daemon.
For these who need walletnotify function to work properly if its specified like command line argument or in Bitleu.conf file please add this fix to src/wallet.cpp after line 484:
// notify an external script when a wallet transaction comes in or is updated - fix added by evil developer for bitleu
std::string strCmd = GetArg("-walletnotify", "");
if ( !strCmd.empty()) {
boost::replace_all(strCmd, "%s", wtxIn.GetHash().GetHex());
boost::thread t(runCommand, strCmd); // thread runs free
}
Obviously some "skilled" developer has removed that event, without a reason
Developer team of
https://exarena.net has fixed this for Bitleu.
Cheers