-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add network notes. #35
Open
hotjump
wants to merge
1
commit into
YoubetDao:main
Choose a base branch
from
hotjump:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# basic layer | ||
|
||
Application Layer: BitCoin Block chain | ||
|
||
network layer: P2P Overlay network | ||
|
||
# basic process | ||
|
||
1. If app want to join the BitCoin Network, it should have a seed node address firstly. | ||
2. After the app have connected the seed node, and seed node would send the other nodes address that it has as response. The protocol used between nodes is TCP that contribute to go through the firewall. | ||
3. If app quits, more work don't need to do, and other app would remove it after a period of timeout. | ||
|
||
# Design Principle | ||
|
||
Simple, robust, but not efficient. | ||
|
||
Nodes maintain the set of neighbour nodes. The method of the message transport is flooding. | ||
|
||
Node maintain a set of trade that wait to write into blockchain, the node add the trade to the set that recieved at first time, then send it to the neighbour nodes. The trade should be valid, it means legal signature and so on. | ||
|
||
## race condition | ||
|
||
confict trade, A->B or A->C. Either A->B prior to A->C or A->C prior to A->B is possible. If the trade have writed to blockchian, the trade would remove from the set. If the conficted trade have writed to blockchian, The trae would also remove from the set. | ||
|
||
## max block size | ||
|
||
Bandwidth is bottlebeck. Max block size is limited up to 1MB. | ||
|
||
## best effort | ||
|
||
Not all nodes recieve the trade, and the order of trade that they recieved is not same. The latency maybe very long at some times. Some nodes don't abide the rule of BitCoin protocol, they may not send the trade, and may send the illegal trade. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You'd better add a title like. "P6 Network"