-
Notifications
You must be signed in to change notification settings - Fork 211
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
Exactly-once message propagation. #50
Comments
Update: If no nodes appear to be close to the target, we can consider the proxying to have failed. |
Perhaps FindNode + a hop counter in the msg for tuning spread |
Hi! Has anyone implemented this yet? We are using Noise for our network, and it'd be helpful to have this feature. |
I am curious about how this is done in modern Wavelet. When Transactions are gossiped through the network, is it possible for a node to receive the same data several times? |
Not mandatory for release.
Syntax:
0<2
implies that Node 2 bootstrapped with Node 0.0<=2
implies that Node 2 sent a message to Node 0.Say we have a setup
0<1 + 1<2
. Proxying means:0=>1 + 1=>2
. Node 0 sends a message to Node 1 who notices the request to have the message proxied/propagated to Node 2.To do this, some requirements need to be done:
The text was updated successfully, but these errors were encountered: