Return-Path: Received: from smtp1.linuxfoundation.org (smtp1.linux-foundation.org [172.17.192.35]) by mail.linuxfoundation.org (Postfix) with ESMTPS id BFD4C8D7 for ; Thu, 15 Oct 2015 18:31:38 +0000 (UTC) X-Greylist: whitelisted by SQLgrey-1.7.6 Received: from mail-ig0-f180.google.com (mail-ig0-f180.google.com [209.85.213.180]) by smtp1.linuxfoundation.org (Postfix) with ESMTPS id 25CDE170 for ; Thu, 15 Oct 2015 18:31:37 +0000 (UTC) Received: by igbdj2 with SMTP id dj2so1232119igb.1 for ; Thu, 15 Oct 2015 11:31:36 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc:content-type; bh=F3r+aOTrAWZOCM0SyfTQPLL4Br+sjJ5HbFwCRtwLdzE=; b=B+zQ0mImp+iOAs921+EYxP83nmu88ai6xUVAQfr5YGBZIn0qZjB0WYYOHEpePLNSyD PEUPTaiQK+k5azdBspxm9/x7I9d9c2LpcIDeoC6HQiCSpLVCNN+Ts/0VIDdoDzasFqXJ 4wp0vQzMH6x4gcAt3MKbO/p8i+yiNr4Lj9SMjSTKDZhJ0242HFSt7J7frT2Gy7+HsYEy HurK67IDykc+sEGnkEF2yLRVi1daoyNJC7qXfdaIIxJYPS0M5P/3LHzBkph26pscdDh3 SRgsullpMeYoGDaDAedmBJZmUHReuX8cffo3jwY9CZOcNWNZ7po/nV4uCnY9MtPINcHS fLfg== X-Gm-Message-State: ALoCoQluZqn9jBE1FkXt+bnX/e38bnGP+Mu1V+UfrNc1ZTm6LrNddmvpIWdGJ3L0HXaCBbuETKOJ X-Received: by 10.50.73.196 with SMTP id n4mr453691igv.46.1444933896542; Thu, 15 Oct 2015 11:31:36 -0700 (PDT) MIME-Version: 1.0 Received: by 10.107.171.5 with HTTP; Thu, 15 Oct 2015 11:31:17 -0700 (PDT) X-Originating-IP: [173.228.107.141] In-Reply-To: References: <20151003143056.GA27942@muck> <87lhbgn4fa.fsf@rustcorp.com.au> <20151008174120.GA9291@muck> <87pp0okeip.fsf@rustcorp.com.au> From: Mark Friedenbach Date: Thu, 15 Oct 2015 11:31:17 -0700 Message-ID: To: Adam Back Content-Type: multipart/alternative; boundary=089e01182526a0fd6e052228e347 X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,HTML_MESSAGE, 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 Cc: Bitcoin Dev Subject: Re: [bitcoin-dev] CHECKSEQUENCEVERIFY - We need more usecases to motivate the change 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: Thu, 15 Oct 2015 18:31:38 -0000 --089e01182526a0fd6e052228e347 Content-Type: text/plain; charset=UTF-8 Adam, there is really no justification I can see to lower the interblock interval on the Bitcoin blockchain, primarily due to the effects of network latency. Lowering the interblock interval and raising the block size are not equal alternatives - you can always get more throughput in bitcoin by raising the block size than by lowering the interblock time. And that's without considering the effect shorter intervals would have on e.g. SPV client bandwidth or sidechain connectivity proofs. So I find it very unlikely that such granularity would ever be needed on the Bitcoin block chain, although if were to happen then extra bits from nSequence could be used in a soft-fork compatible way. However it is true that various sidechains such as Liquid will have a much shorter interblock interval than 10min, as well as customer demand for protocols with shorter timeouts. It would be nice if such systems did not HAVE to resort to complex bit shifting to support more precision, and if protocols written for bitcoin could be reused on such systems with minimal or no modification. To that end, it might be preferable to move the flag bit indicating use of seconds from bit 16 to bit 23 and (by convention only) reserve bits 17..22 to provide higher granularity in a sidechain environment. This keeps the size of a stack push to 3 bytes while also keeping sufficient room for high-order bits of relative lock-time in a sidechain that supports shorter block intervals. Another alternative is to put the units flag in the least significant bit, which has the advantage of allowing both units of lock-time to make use of 1-2 byte pushes, but the disadvantage of making lock times of 64..127 2-bytes instead of 1-byte. Thoughts? On Thu, Oct 15, 2015 at 9:37 AM, Adam Back via bitcoin-dev < bitcoin-dev@lists.linuxfoundation.org> wrote: > Does that pre-judge that block interval would never change from > 10mins? Eg say with IBLT or fountain codes etc and security arguments > for the current limitations of them are found, such that orphan rates > can remain low in a decentralised way with 1min blocks, then the > locktime granularity would be coarse relative to the block interval > (with 512s locktime granularity. > > Adam > > On 15 October 2015 at 18:27, Btc Drak via bitcoin-dev > wrote: > > Alex, > > > > I am sorry for not communicating more clearly. Mark and I discussed your > > concerns from the last meeting and he made the change. The BIP text still > > needs to be updated, but the discussed change was added to the PR, albeit > > squashed making it more non-obvious. BIP68 now explicitly uses 16 bits > with > > a bitmask. Please see the use of SEQUENCE_LOCKTIME_MASK and > > SEQUENCE_LOCKTIME_GRANULARITY in the PR > > https://github.com/bitcoin/bitcoin/pull/6312. > > > > /* If CTxIn::nSequence encodes a relative lock-time, this mask is > > * applied to extract that lock-time from the sequence field. */ > > static const uint32_t SEQUENCE_LOCKTIME_MASK = 0x0000ffff; > > > > /* In order to use the same number of bits to encode roughly the > > * same wall-clock duration, and because blocks are naturally > > * limited to occur every 600s on average, the minimum granularity > > * for time-based relative lock-time is fixed at 512 seconds. > > * Converting from CTxIn::nSequence to seconds is performed by > > * multiplying by 512 = 2^9, or equivalently shifting up by > > * 9 bits. */ > > static const int SEQUENCE_LOCKTIME_GRANULARITY = 9; > > > > I am also much happier with this last tightening up of the specification > > because it removes ambiguity. 512s granularity makes sense within the > > context of the 10 minute block target. > > > > Thank you for spending so much time carefully considering this BIP and > > reference implementation and please let me know if there there are any > > remaining nits so we can get those addressed. > > > > > > > > > > > > On Thu, Oct 15, 2015 at 2:47 PM, Alex Morcos via bitcoin-dev > > wrote: > >> > >> Mark, > >> > >> You seemed interested in changing BIP 68 to use 16 bits for sequence > >> number in both the block and time versions, making time based sequence > >> numbers have a resolution of 512 seconds. > >> > >> I'm in favor of this approach because it leaves aside 14 bits for > further > >> soft forks within the semantics of BIP 68. > >> > >> It would be nice to know if you're planning this change, and perhaps > >> people can hold off on review until things are finalized. > >> > >> I'd cast my "vote" against BIP 68 without this change, but am also open > to > >> being convinced otherwise. > >> > >> What are other peoples opinions on this? > >> > >> On Thu, Oct 8, 2015 at 9:38 PM, Rusty Russell via bitcoin-dev > >> wrote: > >>> > >>> Peter Todd writes: > >>> > On Tue, Oct 06, 2015 at 12:28:49PM +1030, Rusty Russell wrote: > >>> >> Peter Todd via bitcoin-dev > >>> >> writes: > >>> >> > However I don't think we've done a good job showing why we need to > >>> >> > implement this feature via nSequence. > >>> >> > >>> >> It could be implemented in other ways, but nSequence is the neatest > >>> >> and > >>> >> most straightforward I've seen. > >>> >> > >>> >> - I'm not aware of any other (even vague) proposal for its use? > >>> >> Enlighten? > >>> > > >>> > There's three that immediately come to mind: > >>> > > >>> > Gregory Maxwell has proposed it as a way of discouraging miners from > >>> > reorging chains, by including some of the low-order bits of a > previous > >>> > block header in nSequence. > >>> > > >>> > A few people have proposed implementing proof-of-stake blocksize > voting > >>> > with nSequence. > >>> > >>> Excellent, thanks! It's good to have such ideas as a compass. PoS > >>> voting seems like it won't be a problem in 5 bits. > >>> > >>> The "prevbits" idea would want more bits; naively 64 would be good, but > >>> I think there are some tricks we can use to make 32 work OK. We would > >>> have to then split between nLocktime (if available) and multiple > >>> nSequence fields, and it would weaken it for some txs. > >>> > >>> There is one easy solution: change the BIP wording from: > >>> > >>> -For transactions with an nVersion of 2 or greater, > >>> +For transactions with an nVersion of 2, > >>> > >>> And on every tx bump, we decide whether to keep this scheme (mempool > >>> would enforce it always). > >>> > >>> Cheers, > >>> Rusty. > >>> _______________________________________________ > >>> bitcoin-dev mailing list > >>> bitcoin-dev@lists.linuxfoundation.org > >>> https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev > >> > >> > >> > >> _______________________________________________ > >> bitcoin-dev mailing list > >> bitcoin-dev@lists.linuxfoundation.org > >> https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev > >> > > > > > > _______________________________________________ > > bitcoin-dev mailing list > > bitcoin-dev@lists.linuxfoundation.org > > https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev > > > _______________________________________________ > bitcoin-dev mailing list > bitcoin-dev@lists.linuxfoundation.org > https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev > --089e01182526a0fd6e052228e347 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
Adam, there is really no justification= I can see to lower the interblock interval on the Bitcoin blockchain, prim= arily due to the effects of network latency. Lowering the interblock interv= al and raising the block size are not equal alternatives - you can always g= et more throughput in bitcoin by raising the block size than by lowering th= e interblock time. And that's without considering the effect shorter in= tervals would have on e.g. SPV client bandwidth or sidechain connectivity p= roofs. So I find it very unlikely that such granularity would ever be neede= d on the Bitcoin block chain, although if were to happen then extra bits fr= om nSequence could be used in a soft-fork compatible way.

Howe= ver it is true that various sidechains such as Liquid will have a much shor= ter interblock interval than 10min, as well as customer demand for protocol= s with shorter timeouts. It would be nice if such systems did not HAVE to r= esort to complex bit shifting to support more precision, and if protocols w= ritten for bitcoin could be reused on such systems with minimal or no modif= ication.

To that end, it might be preferable to move the flag = bit indicating use of seconds from bit 16 to bit 23 and (by convention only= ) reserve bits 17..22 to provide higher granularity in a sidechain environm= ent. This keeps the size of a stack push to 3 bytes while also keeping suff= icient room for high-order bits of relative lock-time in a sidechain that s= upports shorter block intervals.

Another alternative is to put= the units flag in the least significant bit, which has the advantage of al= lowing both units of lock-time to make use of 1-2 byte pushes, but the disa= dvantage of making lock times of 64..127 2-bytes instead of 1-byte.

=
Thoughts?

On Thu, Oct 15, 2015 at 9:37 AM, Adam Back via bitcoin-dev <bitcoin-dev@lists.linuxfoundation.org> wrote:
Does that pre-judge that block interval wo= uld never change from
10mins?=C2=A0 Eg say with IBLT or fountain codes etc and security arguments=
for the current limitations of them are found, such that orphan rates
can remain low in a decentralised way with 1min blocks, then the
locktime granularity would be coarse relative to the block interval
(with 512s locktime granularity.

Adam

On 15 October 2015 at 18:27, Btc Drak via bitcoin-dev
<bitcoin-dev@lists.linuxfoundation.org> wro= te:
> Alex,
>
> I am sorry for not communicating more clearly. Mark and I discussed yo= ur
> concerns from the last meeting and he made the change. The BIP text st= ill
> needs to be updated, but the discussed change was added to the PR, alb= eit
> squashed making it more non-obvious. BIP68 now explicitly uses 16 bits= with
> a bitmask. Please see the use of SEQUENCE_LOCKTIME_MASK and
> SEQUENCE_LOCKTIME_GRANULARITY in the PR
> https://github.com/bitcoin/bitcoin/pull/6312. >
>=C2=A0 =C2=A0 =C2=A0/* If CTxIn::nSequence encodes a relative lock-time= , this mask is
>=C2=A0 =C2=A0 =C2=A0 * applied to extract that lock-time from the seque= nce field. */
>=C2=A0 =C2=A0 =C2=A0static const uint32_t SEQUENCE_LOCKTIME_MASK =3D 0x= 0000ffff;
>
>=C2=A0 =C2=A0 =C2=A0/* In order to use the same number of bits to encod= e roughly the
>=C2=A0 =C2=A0 =C2=A0 * same wall-clock duration, and because blocks are= naturally
>=C2=A0 =C2=A0 =C2=A0 * limited to occur every 600s on average, the mini= mum granularity
>=C2=A0 =C2=A0 =C2=A0 * for time-based relative lock-time is fixed at 51= 2 seconds.
>=C2=A0 =C2=A0 =C2=A0 * Converting from CTxIn::nSequence to seconds is p= erformed by
>=C2=A0 =C2=A0 =C2=A0 * multiplying by 512 =3D 2^9, or equivalently shif= ting up by
>=C2=A0 =C2=A0 =C2=A0 * 9 bits. */
>=C2=A0 =C2=A0 =C2=A0static const int SEQUENCE_LOCKTIME_GRANULARITY =3D = 9;
>
> I am also much happier with this last tightening up of the specificati= on
> because it removes ambiguity. 512s granularity makes sense within the<= br> > context of the 10 minute block target.
>
> Thank you for spending so much time carefully considering this BIP and=
> reference implementation and please let me know if there there are any=
> remaining nits so we can get those addressed.
>
>
>
>
>
> On Thu, Oct 15, 2015 at 2:47 PM, Alex Morcos via bitcoin-dev
> <bitcoin-d= ev@lists.linuxfoundation.org> wrote:
>>
>> Mark,
>>
>> You seemed interested in changing BIP 68 to use 16 bits for sequen= ce
>> number in both the block and time versions, making time based sequ= ence
>> numbers have a resolution of 512 seconds.
>>
>> I'm in favor of this approach because it leaves aside 14 bits = for further
>> soft forks within the semantics of BIP 68.
>>
>> It would be nice to know if you're planning this change, and p= erhaps
>> people can hold off on review until things are finalized.
>>
>> I'd cast my "vote" against BIP 68 without this chang= e, but am also open to
>> being convinced otherwise.
>>
>> What are other peoples opinions on this?
>>
>> On Thu, Oct 8, 2015 at 9:38 PM, Rusty Russell via bitcoin-dev
>> <bitco= in-dev@lists.linuxfoundation.org> wrote:
>>>
>>> Peter Todd <pete@pete= rtodd.org> writes:
>>> > On Tue, Oct 06, 2015 at 12:28:49PM +1030, Rusty Russell w= rote:
>>> >> Peter Todd via bitcoin-dev <bitcoin-dev@lists.linuxfoundation.org>
>>> >> writes:
>>> >> > However I don't think we've done a good = job showing why we need to
>>> >> > implement this feature via nSequence.
>>> >>
>>> >> It could be implemented in other ways, but nSequence = is the neatest
>>> >> and
>>> >> most straightforward I've seen.
>>> >>
>>> >> - I'm not aware of any other (even vague) proposa= l for its use?
>>> >> Enlighten?
>>> >
>>> > There's three that immediately come to mind:
>>> >
>>> > Gregory Maxwell has proposed it as a way of discouraging = miners from
>>> > reorging chains, by including some of the low-order bits = of a previous
>>> > block header in nSequence.
>>> >
>>> > A few people have proposed implementing proof-of-stake bl= ocksize voting
>>> > with nSequence.
>>>
>>> Excellent, thanks!=C2=A0 It's good to have such ideas as a= compass.=C2=A0 PoS
>>> voting seems like it won't be a problem in 5 bits.
>>>
>>> The "prevbits" idea would want more bits; naively 64= would be good, but
>>> I think there are some tricks we can use to make 32 work OK.= =C2=A0 We would
>>> have to then split between nLocktime (if available) and multip= le
>>> nSequence fields, and it would weaken it for some txs.
>>>
>>> There is one easy solution: change the BIP wording from:
>>>
>>> -For transactions with an nVersion of 2 or greater,
>>> +For transactions with an nVersion of 2,
>>>
>>> And on every tx bump, we decide whether to keep this scheme (m= empool
>>> would enforce it always).
>>>
>>> Cheers,
>>> Rusty.
>>> _______________________________________________
>>> bitcoin-dev mailing list
>>>
bitco= in-dev@lists.linuxfoundation.org
>>> https://lists.linuxfounda= tion.org/mailman/listinfo/bitcoin-dev
>>
>>
>>
>> _______________________________________________
>> bitcoin-dev mailing list
>> bitcoin-d= ev@lists.linuxfoundation.org
>> https://lists.linuxfoundation= .org/mailman/listinfo/bitcoin-dev
>>
>
>
> _______________________________________________
> bitcoin-dev mailing list
> bitcoin-dev@l= ists.linuxfoundation.org
> https://lists.linuxfoundation.org= /mailman/listinfo/bitcoin-dev
>
_______________________________________________
bitcoin-dev mailing list
bitcoin-dev@lists.= linuxfoundation.org
https://lists.linuxfoundation.org/mail= man/listinfo/bitcoin-dev

--089e01182526a0fd6e052228e347--