Chris Priest [ARCHIVE] on Nostr: 📅 Original date posted:2015-12-08 📝 Original message:A wallet doesn't receive ...
📅 Original date posted:2015-12-08
📝 Original message:A wallet doesn't receive transactions from other wallets. That is what
a node does. Wallets just make transactions and then sends them to the
nodes. Nodes then send them to other nodes.
In the early days of bitcoin, all wallets were nodes, but now a lot of
wallets are just wallets with out any specific node. For instance, SPV
wallets, they don't get their UTXO data from any one node that can or
can not support a feature. They get UTXO data from many nodes, some of
which could support said feature, others may not.
The nature of the work that nodes perform, they *should* broadcast
what features they support. The only nodes that matter to the network
are nodes that produce blocks. Nodes that don't produce blocks are
kind of just there, serving whoever happens to connect... I guess
nodes could broadcast their supported implementations of via part of
the version message that is part of the p2p handshake process...
On 12/8/15, Vincent Truong <vincent.truong at procabiak.com> wrote:
> I suppose whether the wallet devs want to implement the soft fork or not is
> irrelevant. They only need to indicate if they are ready i.e. they've
> tested the new soft fork, hard fork or feature and validated that it
> doesn't break their nodes or wallet software.
> On Dec 9, 2015 6:40 AM, "Chris Priest" <cp368202 at ohiou.edu> wrote:
>
>> I proposed in my Wildcard Inputs BIP that the version field be split
>> in two. The first 4 bytes are version number (which in practice is
>> being used for script version), and the second 4 bits are used for
>> transaction type.
>>
>> I don't think the BIP9 mechanism really applies to transactions. A
>> block is essentially a collection of transactions, therefore voting on
>> the block applies to the many parties who have transactions in the
>> block. A transaction on the other hand only effects at most two
>> parties (the sender and the receiver). In other words, block are
>> "communal" data structures, transactions are individual data
>> structures. Also, the nature of soft forks are that wallets can choose
>> to implement a new feature or not. For instance, if no wallets
>> implement RBF or SW, then those features effectively don't exist,
>> regardless of how many nodes have upgraded to handle the feature.
>>
>> Any new transaction feature should get a new "type" number. A new
>> transaction feature can't happen until the nodes support it.
>>
>> On 12/8/15, Vincent Truong via bitcoin-dev
>> <bitcoin-dev at lists.linuxfoundation.org> wrote:
>> > So I have been told more than once that the version announcement in
>> blocks
>> > is not a vote, but a signal for readiness, used in isSupermajority().
>> > Basically, if soft forks (and hard forks) won't activate unless a
>> certain %
>> > of blocks have been flagged with the version up (or bit flipped when
>> > versionbits go live) to signal their readiness, that is a vote against
>> > implementation if they never follow up. I don't like this politically
>> > correct speech because in reality it is a vote... But I'm not here to
>> argue
>> > about that... I would like to see if there are any thoughts on
>> > extending/copying isSupermajority() for a new secondary/non-critical
>> > function to also look for a similar BIP 9 style version bit in txns.
>> > Apologies if already proposed, haven't heard of it anywhere.
>> >
>> > If we are looking for a signal of readiness, it is unfair to wallet
>> > developers and exchanges that they are unable to signal if they too are
>> > ready for a change. As more users are going into use SPV or SPV-like
>> > wallets, when a change occurs that makes them incompatible/in need of
>> > upgrade we need to make sure they aren't going to break or introduce
>> > security flaws for users.
>> >
>> > If a majority of transactions have been sent are flagged ready, we know
>> > that they're also good to go.
>> >
>> > Would you implement the same versionbits for txn's version field, using
>> > 3
>> > bits for versioning and 29 bits for flags? This indexing of every txn
>> might
>> > sound insane and computationally expensive for bitcoin Core to run, but
>> if
>> > it isn't critical to upgrade with soft forks, then it can be watched
>> > outside the network by enthusiasts. I believe this is the most
>> politically
>> > correct way to get wallet devs and exchanges involved. (If it were me I
>> > would absolutely try figure out a way to stick it in
>> > isSupermajority...)
>> >
>> > Miners can watch for readiness flagged by wallets before they
>> > themselves
>> > flag ready. We will have to trust miners to not jump the gun, but
>> > that's
>> > the trade off.
>> >
>> > Thoughts?
>> >
>>
>
Published at
2023-06-07 17:45:53Event JSON
{
"id": "c63516999cfc79327a3525169c85caa5af70dc9b22c3e87c532e434ffb212e25",
"pubkey": "3b5311200328974edeaa105b1a8f60d243e653cc63b6bb29f61dc696e04189ed",
"created_at": 1686159953,
"kind": 1,
"tags": [
[
"e",
"e32f5f580eeeddd8bf1d6ec8b98fe5688507459c25783299ca92810b6802e5e4",
"",
"root"
],
[
"e",
"cc9c5b5ea7b89cea5f60bddaed29da80e2c5a8e79135545146c06d7925f6db78",
"",
"reply"
],
[
"p",
"43d409a3ebd823071d562a2252a9126d5cba7aee3ffea64cf3e28e252af0a8e8"
]
],
"content": "📅 Original date posted:2015-12-08\n📝 Original message:A wallet doesn't receive transactions from other wallets. That is what\na node does. Wallets just make transactions and then sends them to the\nnodes. Nodes then send them to other nodes.\n\nIn the early days of bitcoin, all wallets were nodes, but now a lot of\nwallets are just wallets with out any specific node. For instance, SPV\nwallets, they don't get their UTXO data from any one node that can or\ncan not support a feature. They get UTXO data from many nodes, some of\nwhich could support said feature, others may not.\n\nThe nature of the work that nodes perform, they *should* broadcast\nwhat features they support. The only nodes that matter to the network\nare nodes that produce blocks. Nodes that don't produce blocks are\nkind of just there, serving whoever happens to connect... I guess\nnodes could broadcast their supported implementations of via part of\nthe version message that is part of the p2p handshake process...\n\nOn 12/8/15, Vincent Truong \u003cvincent.truong at procabiak.com\u003e wrote:\n\u003e I suppose whether the wallet devs want to implement the soft fork or not is\n\u003e irrelevant. They only need to indicate if they are ready i.e. they've\n\u003e tested the new soft fork, hard fork or feature and validated that it\n\u003e doesn't break their nodes or wallet software.\n\u003e On Dec 9, 2015 6:40 AM, \"Chris Priest\" \u003ccp368202 at ohiou.edu\u003e wrote:\n\u003e\n\u003e\u003e I proposed in my Wildcard Inputs BIP that the version field be split\n\u003e\u003e in two. The first 4 bytes are version number (which in practice is\n\u003e\u003e being used for script version), and the second 4 bits are used for\n\u003e\u003e transaction type.\n\u003e\u003e\n\u003e\u003e I don't think the BIP9 mechanism really applies to transactions. A\n\u003e\u003e block is essentially a collection of transactions, therefore voting on\n\u003e\u003e the block applies to the many parties who have transactions in the\n\u003e\u003e block. A transaction on the other hand only effects at most two\n\u003e\u003e parties (the sender and the receiver). In other words, block are\n\u003e\u003e \"communal\" data structures, transactions are individual data\n\u003e\u003e structures. Also, the nature of soft forks are that wallets can choose\n\u003e\u003e to implement a new feature or not. For instance, if no wallets\n\u003e\u003e implement RBF or SW, then those features effectively don't exist,\n\u003e\u003e regardless of how many nodes have upgraded to handle the feature.\n\u003e\u003e\n\u003e\u003e Any new transaction feature should get a new \"type\" number. A new\n\u003e\u003e transaction feature can't happen until the nodes support it.\n\u003e\u003e\n\u003e\u003e On 12/8/15, Vincent Truong via bitcoin-dev\n\u003e\u003e \u003cbitcoin-dev at lists.linuxfoundation.org\u003e wrote:\n\u003e\u003e \u003e So I have been told more than once that the version announcement in\n\u003e\u003e blocks\n\u003e\u003e \u003e is not a vote, but a signal for readiness, used in isSupermajority().\n\u003e\u003e \u003e Basically, if soft forks (and hard forks) won't activate unless a\n\u003e\u003e certain %\n\u003e\u003e \u003e of blocks have been flagged with the version up (or bit flipped when\n\u003e\u003e \u003e versionbits go live) to signal their readiness, that is a vote against\n\u003e\u003e \u003e implementation if they never follow up. I don't like this politically\n\u003e\u003e \u003e correct speech because in reality it is a vote... But I'm not here to\n\u003e\u003e argue\n\u003e\u003e \u003e about that... I would like to see if there are any thoughts on\n\u003e\u003e \u003e extending/copying isSupermajority() for a new secondary/non-critical\n\u003e\u003e \u003e function to also look for a similar BIP 9 style version bit in txns.\n\u003e\u003e \u003e Apologies if already proposed, haven't heard of it anywhere.\n\u003e\u003e \u003e\n\u003e\u003e \u003e If we are looking for a signal of readiness, it is unfair to wallet\n\u003e\u003e \u003e developers and exchanges that they are unable to signal if they too are\n\u003e\u003e \u003e ready for a change. As more users are going into use SPV or SPV-like\n\u003e\u003e \u003e wallets, when a change occurs that makes them incompatible/in need of\n\u003e\u003e \u003e upgrade we need to make sure they aren't going to break or introduce\n\u003e\u003e \u003e security flaws for users.\n\u003e\u003e \u003e\n\u003e\u003e \u003e If a majority of transactions have been sent are flagged ready, we know\n\u003e\u003e \u003e that they're also good to go.\n\u003e\u003e \u003e\n\u003e\u003e \u003e Would you implement the same versionbits for txn's version field, using\n\u003e\u003e \u003e 3\n\u003e\u003e \u003e bits for versioning and 29 bits for flags? This indexing of every txn\n\u003e\u003e might\n\u003e\u003e \u003e sound insane and computationally expensive for bitcoin Core to run, but\n\u003e\u003e if\n\u003e\u003e \u003e it isn't critical to upgrade with soft forks, then it can be watched\n\u003e\u003e \u003e outside the network by enthusiasts. I believe this is the most\n\u003e\u003e politically\n\u003e\u003e \u003e correct way to get wallet devs and exchanges involved. (If it were me I\n\u003e\u003e \u003e would absolutely try figure out a way to stick it in\n\u003e\u003e \u003e isSupermajority...)\n\u003e\u003e \u003e\n\u003e\u003e \u003e Miners can watch for readiness flagged by wallets before they\n\u003e\u003e \u003e themselves\n\u003e\u003e \u003e flag ready. We will have to trust miners to not jump the gun, but\n\u003e\u003e \u003e that's\n\u003e\u003e \u003e the trade off.\n\u003e\u003e \u003e\n\u003e\u003e \u003e Thoughts?\n\u003e\u003e \u003e\n\u003e\u003e\n\u003e",
"sig": "1675d389b50a99e1f6fc434f6658e25b5ed3fd5105d2fd2236a4a381eb5321e8c017f9766ff0b412f21a619c8aa9ad379e4b139a8a7cb2808f3630120f2bfc06"
}