Its an inexplicable feeling, a rush, a collective rush of productivity.
We can Accomplish Anything Leveraging Collective Energy. Its a place of cyber ZEN.
Its an inexplicable feeling, a rush, a collective rush of productivity.
We can Accomplish Anything Leveraging Collective Energy. Its a place of cyber ZEN.
Not weird at all. I done told yâall:
This is fun!
I am grateful for your team to push out a V2 testnet iteration in such a short time.
Just to share some more feedback comparing V2 vs V1 testnet from my end:
Not only did all the CLI commands I tested on V1 finally succeed (minus the safe wallet balance), it was great to finally see my home node join the testnet and store a single chunk successfully!
Using a re-playable container deployment has helped me vet out that the existing locked down network configuration in my dev lab is still allowing safe cli commands to succeed in their communication workflow.
Thank you Maidsafe team! You made my day!
Amazing, pls share container methodology with community if you can. Having container best practices known before launch will greatly help adoption.
Team, once again, having this function inside containers (and cross compiled to rPi4 etc.) is a testament to some engineering choices made over the last few years. Thank you for the unwavering dedication.
Yes, windows is the problem.
For the next testnet can we organise the comments by platform (Linux, Mac, Windows)?
Mine too! Cheers all.
I did not do killall, and then I was accepted on the first try. How did it go with you? I wonder if my acceptance was just luck or maybe somehow related to attempts beforeâŚ
Yes, itâs nice to be able to contribute in this way.
If the pace of iterations really is this fast, I wonder if it would make sense to make a steady rhythm to them. For example every Tuesday and Thursday - and then skip a beat if there is more work to do.
Oh, but that sounds like order everything and we are supposed to go full async
Nice build system. No need to hunt for dependencies for hours.
This is how stack problem can be fixed (source1, source2):
(Note the differences between 0x800000
and 8000000
)
diff --git a/.cargo/config.toml b/.cargo/config.toml
new file mode 100644
index 0000000..0bdfed5
--- /dev/null
+++ b/.cargo/config.toml
@@ -0,0 +1,2 @@
+[target.x86_64-pc-windows-msvc]
+rustflags = ["-C", "link-arg=/STACK:0x800000"]
Nice one @Vort !
What does this mean?
Error: Failed to connect: ConnectionError: Failed to connect to the SAFE Network: QuicP2p(UnresolvedPublicIp) topic:34430
Havenât seen that I am sorry
My node was never accepted for test 2.
What if nodes try to lock up sections by refusing to respond only when they are Elders, but do respond when Adult. I think this would result in the same behaviour and only need two such Elders to kill a section. (ICYMI: @dirvine)
N.B. Credit to Redditor varikonniemi for spotting this.
Maybe just demote them permanently, by adding them to a permanent adult only list.
Edit: You could also drop their age to 1, kick them off the network, etc. I suppose it depends how severe the punishment should be.
I think we just need a selection mechanism thatâs a bit more random. So choose one of the top five candidate Adults, or top ten etc so the odds are sufficiently difficult to game.
Or maybe not and this is the problem.
How do you launch the nodes after the genesis?
If you launch them without specifying --local-adr
then a random port will be chosen. I guess you havenât opened all the ports in the firewall which means that a node wonât accept an unsolicited connection from a new node, though it will accept requests from nodes for which it is the initiator of the connection which are those in the hardcoded list.
This is how I think communication works but I am not a network specialist and I may be wrong.
EDIT: I was unclear. What I propose is that Maidsafe and anybody else adding nodes to the network use --local-adr
parameter and ensure that the specified port is opened in the firewal.
That sounds about right for a typical firewall.
I saw hangs earlier when was using the same port over and over.
Maybe 3 minutes delay will help with this problem however.
Also I saw answer that random port may be useful to fight with censorship.
This reachable test is what we are on right now. Itâs a bit subtle, but your firewall point is well made and it is true. So we have
Sometimes though, NIC and routers will also multiplex such connections. So you get an incoming connection from 1.1.1.1:80 and then connect back from another local endpoint (same IP, same NIC) and the NIC will see there is a connection to that IP and jump on it and use it, so you think you went back on another port, but in fact did not. Routers can do that same thing.
So many STUN/TURN etc. can use 2 NICs for such tests to try and ensure different IP + hardware + ports.
So we are checking a couple of mechanisms here to ensure we can tell for sure a node is connectable (and can therefore become and Elder), but also a node killer that will allow Adults to report an Elder as not reachable and we kill him, same goes for Elders failing DKG, we also slaughter them for now. We can optimise later, but now itâs just blind murder we do, or will do to start with.