1 2016-06-19 07:11:11 <cluelessperson> Question ,how do I watch my bitcoin node for ANY transaction?
 2 2016-06-19 07:11:22 <cluelessperson> just want a python ping any transaction that comes thorugh
 3 2016-06-19 07:56:59 <btcdrak> cluelessperson: run https://github.com/btcdrak/bitcoin/releases/tag/v0.12.1-addrindex
 4 2016-06-19 08:06:40 <cluelessperson> btcdrak, what's that do?
 5 2016-06-19 08:11:06 <btcdrak> cluelessperson: allows you to query any address direct from the bitcoind
 6 2016-06-19 08:11:21 <btcdrak> maybe I misunderstood what you are looking for
 7 2016-06-19 08:24:48 <cluelessperson> btcdrak, I'm wanting to hook and run code any time a transaction is created
 8 2016-06-19 08:25:13 <cluelessperson> btcdrak,    Any time a transaction is seen by my node, I'd like to have it run a script
 9 2016-06-19 10:07:38 <mkwia> I'm trying to make my own online wallet service, could anyone point me to some relevant documentation?
10 2016-06-19 10:24:04 <paveljanik> cluelessperson, when the tx is accepted to the memory pool? Have a look at zmq notifications...
11 2016-06-19 11:20:43 <KuDeTa> http://www.lrb.co.uk/v38/n13/andrew-ohagan/the-satoshi-affair
12 2016-06-19 11:21:13 <KuDeTa> (sort of off-topic, i know, but also acutely relevant here)
13 2016-06-19 14:59:20 <tunage> which file in the source has the main ASM hashing function? I found it once long ago but unable to find it now.
14 2016-06-19 15:06:16 <Chris_Stewart_5> tunage: In bitcoin core?
15 2016-06-19 15:06:32 <tunage> yes
16 2016-06-19 15:08:31 <tunage> it could of been changed.  but for the longest time, the core hashing function was a piece of MIT code. really brilliant work.
17 2016-06-19 15:08:41 <Chris_Stewart_5> https://github.com/bitcoin/bitcoin/blob/master/src/crypto/ripemd160.cpp
18 2016-06-19 15:09:11 <Chris_Stewart_5> by 'ASM' i'm guessing you are referring to the function used to hash a redeem script in p2sh
19 2016-06-19 15:12:28 <tunage> Chris_Stewart_5: which file has the redeem script?
20 2016-06-19 15:12:46 <tunage> I looked in script. and .c
21 2016-06-19 15:44:53 <Chris_Stewart_5> tunage: The redeem script is just another CScript, the script's byte representation is hashed with RIPEMD160
22 2016-06-19 15:48:10 <Chris_Stewart_5> tunage: See https://github.com/bitcoin/bitcoin/blob/master/src/script/script.h
23 2016-06-19 18:11:16 <tunage> Chris_Stewart_5: Thank you!
24 2016-06-19 21:26:48 <mkwia> what is the easiest way to generate an address/privkey pair as part of a command line python application?