Can a node exit the bitcoin network and return to his address and transactions?

0

I have read in Wikipedia that "Messages are broadcast on a best effort basis, and nodes can leave and rejoin the network at will " in bitcoin network. what does it mean that a node can leave the network-what will happend to its transactions? Can he get back to the same address and claim his transactions again (its bitcoin)?

thank you

adi

Posted 2018-04-14T22:10:21.457

Reputation: 7

Answers

2

Transactions are not directly sent to the node that holds the private keys for the addresses involving it. Rather transactions are broadcast to all nodes on the network and then recorded on the blockchain. When a node rejoins the network, it downloads and verifies the blockchain from its peers. When it does that, it scans the blockchain for transactions that pertain to it.

The process of receiving is completely passive; there is no direct sending to the receiver (the sender does not have that information) nor is there a claiming process.

Andrew Chow

Posted 2018-04-14T22:10:21.457

Reputation: 40 910

will the node which rejoined the network return to its previous private key and public key/address?adi 2018-04-15T03:21:27.993

If by "return to" you mean that a node will have the same private keys and addresses, then yes. Private keys and their associated addresses are not assigned by anyone; instead a wallet generates locally the private keys that it uses. Furthermore private keys and addresses do not need to be registered anywhere in order to be used. So when a node goes offline, it holds onto its private keys because it generated them and stores them locally.Andrew Chow 2018-04-15T04:33:37.373