Return-Path: Received: from smtp1.linuxfoundation.org (smtp1.linux-foundation.org [172.17.192.35]) by mail.linuxfoundation.org (Postfix) with ESMTPS id C8621128D for ; Fri, 18 Sep 2015 03:27:56 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from s47.web-hosting.com (s47.web-hosting.com [199.188.200.16]) by smtp1.linuxfoundation.org (Postfix) with ESMTPS id 61DAD188 for ; Fri, 18 Sep 2015 03:27:56 +0000 (UTC) Received: from localhost ([::1]:48559 helo=server47.web-hosting.com) by server47.web-hosting.com with esmtpa (Exim 4.85) (envelope-from ) id 1ZcmL5-003Bxn-2d for bitcoin-dev@lists.linuxfoundation.org; Thu, 17 Sep 2015 23:27:55 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Date: Thu, 17 Sep 2015 23:27:54 -0400 From: jl2012@xbt.hk To: bitcoin-dev@lists.linuxfoundation.org In-Reply-To: References: Message-ID: <014345a983eabf243d9ce127de0dff7c@xbt.hk> X-Sender: jl2012@xbt.hk User-Agent: Roundcube Webmail/1.0.5 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - server47.web-hosting.com X-AntiAbuse: Original Domain - lists.linuxfoundation.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - xbt.hk X-Get-Message-Sender-Via: server47.web-hosting.com: authenticated_id: jl2012@xbt.hk X-Source: X-Source-Args: X-Source-Dir: X-From-Rewrite: unmodified, already matched X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on smtp1.linux-foundation.org Subject: Re: [bitcoin-dev] Fill-or-kill transaction X-BeenThere: bitcoin-dev@lists.linuxfoundation.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Bitcoin Development Discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Sep 2015 03:27:56 -0000 Peter Todd via bitcoin-dev 於 2015-09-17 18:44 寫到: > It can be implemented by a "treat like Coinbase" flag in the > UTXO set, set when the output is created. I think this is the cleanest way to implement the maturity requirement. I understand why we need maturity, However, requiring 100 block maturity will unfortunately make the system much less appealing since the recipient may not like it. A fill-or-kill tx may still be used as the initial funding tx to the Lightning Network, as long as the counterparty is willing to take the extra risk. Actually, a fill-or-kill tx is slight safer than a coinbase tx, depending on the difference between the absolute kill time and actual confirmation time. In a re-org, an orphaned coinbase tx is permanently invalidated and has no hope to be included again. However, an orphaned fill-or-kill tx may still be confirmed by another miner. If there is still a few days until the absolute kill time, a fill-or-kill tx is basically as safe as a normal tx. With possibility of re-org and unpredictable block interval in mind, height-based fill-or-kill is not very useful since it is difficult for users to determine the actual kill time. If we could abolish the idea of height-based fill-or-kill, the resolution of time-based fill-or-kill might be improved. ------------------------------------ Chun Wang 於 2015-09-17 18:33 寫到: > We are currently using nLockTime for share info and nSequence for > extranonce2. I have carefully reviewed the reference implementation of > BIP68 and it should be compatible, but this proposal may break the > implementation unless it does not affect coinbase transactions. > The fill-or-kill system is totally optional, using a bit flag in tx nVersion to indicate. Everything should be fine unless you are also messing with the nVersion ------------------------------------- Btc Drak 於 2015-09-17 15:12 寫到: > Forgive me if I have missed the exact use-case, but this seems overly > complex. Surely fill-or-kill refers to getting a transaction confirmed > within a few confirms or to drop the tx from the mempool so it wont be > considered for inclusion anymore. As such, you could just repurpose a > small range of nLocktime such that a TX will be accepted into mempool > for a specific period before expiring. What I'm describing is to implement fill-or-kill as consensus rule. Certainly, we could implement it at the P2P network level: everything is the same as I described, but the nLockTime2 and nKillTime are for reference only and tx validity depends only on the nLockTime. Benevolent miners should drop the tx after the suggested kill time but there is no guarantee ------------------------------------- I made a mistake in this example: > A user wants his tx get confirmed in the block 630000, the first block > with reward below 10BTC. He is willing to pay high fee but don't want > it gets into another block. He will set nLockTime2 = 210,000 and > nKillTime = 0 The correct nLockTime2 for this example should be 210000/4 = 52500