1 2016-08-03 12:35:29 <kaidou> has anyone tried bitcoinjs with regtest?
 2 2016-08-03 18:27:54 <nkuttler> what would cause a error pushing = -26 16: bad-txns-inputs-duplicate ?
 3 2016-08-03 18:28:00 <nkuttler> fwiw, i'm using joinmarket
 4 2016-08-03 18:37:20 <nkuttler> never mind
 5 2016-08-03 22:12:56 <Kefkius> Is there a situation in which OP_CHECKLOCKTIMEVERIFY would not be immediately followed by OP_DROP?
 6 2016-08-03 22:46:23 <GreenIsMyPepper> you may want to do cute things like branch conditions depending on different checklocktimeverify values.
 7 2016-08-03 22:46:39 <roasbeef> Kefkius: if it's the last op code in a branch
 8 2016-08-03 22:47:12 <GreenIsMyPepper> e.g. <600> OP_EQUAL OP_IF ... OP_ELSE.. etc.
 9 2016-08-03 22:49:55 <roasbeef> Kefkius: here's an example, but using CSV instead of CLTV: https://github.com/lightningnetwork/lnd/blob/master/lnwallet/script_utils.go#L538
10 2016-08-03 23:38:53 <Kefkius> roasbeef: Thanks, all the examples from BIP 65 do DROP after CLTV but none of them use it as the last op in a branch