1 2017-01-12 00:03:03 <moeadham> Thanks for the insight Lightsword!
 2 2017-01-12 00:17:25 <Lightsword> moeadham, I think as an industry we should working on creating standardized systems and processes that can be well reviewed and used by many
 3 2017-01-12 08:33:12 <SillyMusings> Do txs in blocks have an 'order'? e.g. TX2 follows TX1
 4 2017-01-12 08:33:47 <SillyMusings> I am assuming it does because various block explorers have the same order
 5 2017-01-12 08:35:39 <sturles> Yes.  E.g. a tx consuming an output, must be after the tx making the output.
 6 2017-01-12 08:38:48 <SillyMusings> Thank you sturles
 7 2017-01-12 08:39:26 <SillyMusings> Is there any tool/script that lets me calculate the checksum for a given prefix, (e.g. get the checksum for '1BitcoinEaterAddressDontSend')
 8 2017-01-12 08:48:30 <SillyMusings> nvm, found a instructions, it's pretty simple
 9 2017-01-12 20:07:14 <matthewspies> I'm writing a little bit of software for bitcoin cold storage. I'd like to calculate a transaction fee and I know that currently people use something like 100 satoshis/byte. But I only know the size of a transaction after I've generated it and implicitly included the transaction amount. How can I figure out the transaction size before I've generated it?
10 2017-01-12 20:09:05 <luke-jr> generate it and slightly overestimate the size of signatures; then adjust the amount when you're done
11 2017-01-12 20:09:30 <luke-jr> err, ignore the latter part. just overestimate
12 2017-01-12 20:09:47 <luke-jr> (you could adjust and resign until it fits, but not worth it)