1 2017-04-21 09:03:47 <rugu> From what i have read, the halving and number of bitcoins generated in written in main.cpp, but I cannot find it here. https://github.com/bitcoin/bitcoin/tree/master/src
 2 2017-04-21 09:05:59 <rugu> Could someone help me in locating that snippet of the code please?
 3 2017-04-21 09:08:49 <arubi> rugu, main.cpp is no more
 4 2017-04-21 09:09:17 <rugu> but then where is the code of main.cpp distributed to? I tried searching across but can't locate it.
 5 2017-04-21 09:10:12 <arubi> it's in many different files.  the path and naming should give a hint, also `git grep`.  I'm guessing it's in chainparams
 6 2017-04-21 09:18:00 <rugu> Thank you so much. Found it in validation.cpp.
 7 2017-04-21 11:13:59 <lorenzogiust> hello, doing some tests about the ZeroMQ transaction notification functionality and I realised that in regtest, unlike testnet and mainnet, every time that i restart all nodes I've been notified about all past transactions starting from block 0 but I don't understand the rationale
 8 2017-04-21 13:05:36 <czaanja_> Hello, please can anyone help me to find the option for bitcoin.conf which i can use to recieve walletnotify callbacks even for transactions with unconfirmed inputs ( or accepting them to mempool  in general ). I know have seen it, but can not find it now.
 9 2017-04-21 13:12:24 <belcher> czaanja_ walletnotify fires for transactions in your wallet
10 2017-04-21 13:12:36 <belcher> so you need to importaddress <address> false in rpc
11 2017-04-21 13:15:50 <czaanja_> belcher: Sure, but it does not trigger for transactions with unconfirmed inputs
12 2017-04-21 13:17:28 <belcher> it doesnt? hmm, idk
13 2017-04-21 13:18:25 <czaanja_> belcher: It does not by default, I guess it does not accept such transations in mempool, but I think there is some option to allow that. But can not find it now.
14 2017-04-21 13:54:08 <ghpg> hello, I wonder if someone looked over https://github.com/bitcoin/bitcoin/pull/9939 and has reservations about merging that? it claims to reduce listunspent time by 90% for large wallets, looks great
15 2017-04-21 19:25:01 <kvnn> Can anyone recommend an alternative to `bcoin` for subscribing to send/receives for particular addresses (this particular use case: https://github.com/bcoin-org/bcoin/wiki/Example:-SPV-Sync) ?
16 2017-04-21 19:26:24 <abpa> Poll bitcoin core?
17 2017-04-21 19:26:42 <abpa> Use pruning to reduce disk usage
18 2017-04-21 19:29:07 <kvnn> thanks @abpa that makes sense
19 2017-04-21 19:42:27 <lorenzogiust> noone can answer my question about zeroMQ?