1 2016-12-30 00:20:42 <akrmn> Hi does VerifyScript() in python-bitcoinlib only work for python3, even for the latest version (0.7.0)?
2 2016-12-30 00:30:40 <akrmn> not just the verifying, but the creation of signatures also
3 2016-12-30 00:32:46 <satosh-777-xl> Hey guys, quick stupid question this time.  When creating a transaction reference (MakeTransactionRef()) should I be using std::move? For example in miner.cpp when a new block is created, the coinbase  transaction reference is created this way:  	pblock->vtx[0] = MakeTransactionRef(std::move(coinbaseTx));   I don't completely understand why, I read the documentation for std::move and I am more confused now. What benefit do
4 2016-12-30 06:44:29 <akrmn> ok never mind, I have it working with python 2. Just need to make sure I don't use the bytes() function. I did bytes([SIGHASH_ALL]) and it gave me the wrong bytes, should just be 01 instead of 5b315d on python2