Author

Topic: [ANN] Expanse (EXP) - 1st Stable fork of Ethereum (New Algo + PirlGuard) - page 352. (Read 961462 times)

legendary
Activity: 2184
Merit: 1011
Franko is Freedom
Status Ubuntu 14.04 x64; Dual Stack (IPv4/IPv6);  Port 41356 UDP open (both IPv6 and IPv4)

After updating from github no change:
- no peer automatically found
- adding manually f944 successful
admin.addPeer("enode://f944c6702a78a0cbcd6505b76daff069dad2e45ff88896c475da2bef47091c88e5b4042211233e397ad958be998003a2674151e60719c5fdeeff5f8cc2c231a1@74.196.59.103:42786")
- adding peers given in OP failed
admin.addPeer("enode://4055ec69e53df4bfecb95e3b65c28e4f2a1145a3bdc4d85d077b552248cf159951afd649f044783bebf48b902fbc0e96978c76236fd4ab3d5ef7d95d72b84ee5@[::]:42786")

==> it seemed that only peers could be added manually, which contained an IPv4 address
==> peers given by the unspecified IPv6 addresss [::] were not found

So I tested to disable the IPv6 Stack:
bingo:

> admin.peers
[{
    Caps: "exp/60, exp/61",
    ID: "15a6ddec7c2e7fc67686557975b41c6308525a69c8ce56747d6ae9c7e9dc8910a4624443ffc1270 01f72f8f8fca4a67d04906e72d725d7b39dbff4454b8b2b28",
    LocalAddress: "192.168.0.101:41356",
    Name: "Gexp/v1.1.3/windows/go1.4.2",
    RemoteAddress: "68.197.12.14:42786"
}, {
    Caps: "exp/60, exp/61",
    ID: "4055ec69e53df4bfecb95e3b65c28e4f2a1145a3bdc4d85d077b552248cf159951afd649f044783 bebf48b902fbc0e96978c76236fd4ab3d5ef7d95d72b84ee5",
    LocalAddress: "192.168.0.101:60407",
    Name: "Gexp/v1.1.3-df8d5237/linux/go1.4",
    RemoteAddress: "45.55.217.136:42786"
}, {
    Caps: "exp/60, exp/61",
    ID: "f944c6702a78a0cbcd6505b76daff069dad2e45ff88896c475da2bef47091c88e5b4042211233e3 97ad958be998003a2674151e60719c5fdeeff5f8cc2c231a1",
    LocalAddress: "192.168.0.101:57212",
    Name: "Gexp/v1.1.2-74cee8c3/linux/go1.4",
    RemoteAddress: "74.196.59.103:42786"
}]

It seems, if IPv6 stack is enabled, the node tries to find peers using IPv6 only.
This will fail, because no peer is listening on an open IPv6 port.

Strange:
After reenabling the IPv6 Stack all is working well.
Seems that the node is caching known peers (like bitcon (peers.dat)

I cannot check this now, but perhaps this will help:
admin.addPeer("enode://4055ec69e53df4bfecb95e3b65c28e4f2a1145a3bdc4d85d077b552248cf159951afd649f044783bebf48b902fbc0e96978c76236fd4ab3d5ef7d95d72b84ee5@0.0.0.0:42786")




@defaced
any comments?

That seems like an accurate description of what is happening
hero member
Activity: 601
Merit: 500
Status Ubuntu 14.04 x64; Dual Stack (IPv4/IPv6);  Port 41356 UDP open (both IPv6 and IPv4)

After updating from github no change:
- no peer automatically found
- adding manually f944 successful
admin.addPeer("enode://f944c6702a78a0cbcd6505b76daff069dad2e45ff88896c475da2bef47091c88e5b4042211233e397ad958be998003a2674151e60719c5fdeeff5f8cc2c231a1@74.196.59.103:42786")
- adding peers given in OP failed
admin.addPeer("enode://4055ec69e53df4bfecb95e3b65c28e4f2a1145a3bdc4d85d077b552248cf159951afd649f044783bebf48b902fbc0e96978c76236fd4ab3d5ef7d95d72b84ee5@[::]:42786")

==> it seemed that only peers could be added manually, which contained an IPv4 address
==> peers given by the unspecified IPv6 addresss [::] were not found

So I tested to disable the IPv6 Stack:
bingo:

> admin.peers
[{
    Caps: "exp/60, exp/61",
    ID: "15a6ddec7c2e7fc67686557975b41c6308525a69c8ce56747d6ae9c7e9dc8910a4624443ffc1270 01f72f8f8fca4a67d04906e72d725d7b39dbff4454b8b2b28",
    LocalAddress: "192.168.0.101:41356",
    Name: "Gexp/v1.1.3/windows/go1.4.2",
    RemoteAddress: "68.197.12.14:42786"
}, {
    Caps: "exp/60, exp/61",
    ID: "4055ec69e53df4bfecb95e3b65c28e4f2a1145a3bdc4d85d077b552248cf159951afd649f044783 bebf48b902fbc0e96978c76236fd4ab3d5ef7d95d72b84ee5",
    LocalAddress: "192.168.0.101:60407",
    Name: "Gexp/v1.1.3-df8d5237/linux/go1.4",
    RemoteAddress: "45.55.217.136:42786"
}, {
    Caps: "exp/60, exp/61",
    ID: "f944c6702a78a0cbcd6505b76daff069dad2e45ff88896c475da2bef47091c88e5b4042211233e3 97ad958be998003a2674151e60719c5fdeeff5f8cc2c231a1",
    LocalAddress: "192.168.0.101:57212",
    Name: "Gexp/v1.1.2-74cee8c3/linux/go1.4",
    RemoteAddress: "74.196.59.103:42786"
}]

It seems, if IPv6 stack is enabled, the node tries to find peers using IPv6 only.
This will fail, because no peer is listening on an open IPv6 port.

Strange:
After reenabling the IPv6 Stack all is working well.
Seems that the node is caching known peers (like bitcon (peers.dat)

I cannot check this now, but perhaps this will help:
admin.addPeer("enode://4055ec69e53df4bfecb95e3b65c28e4f2a1145a3bdc4d85d077b552248cf159951afd649f044783bebf48b902fbc0e96978c76236fd4ab3d5ef7d95d72b84ee5@0.0.0.0:42786")




@defaced
any comments?
sr. member
Activity: 519
Merit: 250
Hi Oc when you will set a pool?
He could goahead and get everything setup, find peers and such, then when the new genesis comes out launch it.

Ok thx
legendary
Activity: 2184
Merit: 1011
Franko is Freedom
Hi Oc when you will set a pool?
He could goahead and get everything setup, find peers and such, then when the new genesis comes out launch it.
sr. member
Activity: 519
Merit: 250
Hi Oc when you will set a pool?
legendary
Activity: 2688
Merit: 1240
Is there any way to participate with a rented rig? Just found out about this and didn't read through all the pages.

I can rent you one of my rigs... 60 MH/s per Rig..  currently got 6 running. I just need to find the right price per hour per rig as there is quite no comparison yet...
legendary
Activity: 2058
Merit: 1166
Is there any way to participate with a rented rig? Just found out about this and didn't read through all the pages.

Nope

ok, thanks.
hero member
Activity: 672
Merit: 500
Is there any way to participate with a rented rig? Just found out about this and didn't read through all the pages.

Nope
legendary
Activity: 2058
Merit: 1166
Is there any way to participate with a rented rig? Just found out about this and didn't read through all the pages.
legendary
Activity: 1470
Merit: 1000
cryptocollectorsclub.com
Do I need to run step 2 at final launch? Nodes will be the same?  Undecided

"nodes should be the same"

What about step 2 genesis? Do I need to run it at launch? There will be other genesis block right?

There will be a new genesis to run, and we will provide clear instructions in advance of the launch to make it as simple as possible.

What about nodes?

Still can't connect.

Dan Conway is going to make step by step instructions available before launch to try and clarify any confusion. (I think he has to focus on that stuff for a bit now) Worst case if you just can't get it going for some reason, Suprnova will have a pool.
legendary
Activity: 1470
Merit: 1000
cryptocollectorsclub.com
So it`s still testnet?

Yes, tonight at 8pm EDT will the Main Launch.
legendary
Activity: 1470
Merit: 1000
cryptocollectorsclub.com
Are you still want make 1.1M premine available from start? Or have changes in this option?
Bump... my question

Check the main post it has been updated:

"...with only 100k of that total available at launch to help with development and pay for initial bounties, with the rest of the foundation reserve to be slowly distributed to the team over a year using smart contracts"
legendary
Activity: 1400
Merit: 1000
Do I need to run step 2 at final launch? Nodes will be the same?  Undecided

"nodes should be the same"

What about step 2 genesis? Do I need to run it at launch? There will be other genesis block right?

There will be a new genesis to run, and we will provide clear instructions in advance of the launch to make it as simple as possible.

What about nodes?

Still can't connect.
Hix
legendary
Activity: 1971
Merit: 1036
Are you still want make 1.1M premine available from start? Or have changes in this option?
Bump... my question
legendary
Activity: 1470
Merit: 1000
cryptocollectorsclub.com
Do I need to run step 2 at final launch? Nodes will be the same?  Undecided

"nodes should be the same"

What about step 2 genesis? Do I need to run it at launch? There will be other genesis block right?

There will be a new genesis to run, and we will provide clear instructions in advance of the launch to make it as simple as possible.
hero member
Activity: 574
Merit: 500
Do I need to run step 2 at final launch? Nodes will be the same?  Undecided

"nodes should be the same"

What about step 2 genesis? Do I need to run it at launch? There will be other genesis block right?
sr. member
Activity: 428
Merit: 250
Inactivity: 8963
Ok, but what about received/send transactions? How to check them?
In theory you can run something similar to:
Code:
var blockNumber = web3.exp.blockNumber;
for(i=blockNumber; i>0; i--){web3.exp.getBlock(i)}
and check every block for your adress in it.
But only displayed block is the last one in the loop, and there must be a better way to do it. This method is just ridiculous.
legendary
Activity: 1470
Merit: 1000
cryptocollectorsclub.com
Do I need to run step 2 at final launch? Nodes will be the same?  Undecided

"nodes should be the same"
legendary
Activity: 1470
Merit: 1000
cryptocollectorsclub.com
So, i mined 1000 coins, but they are useless, right?

The only use for the testnet coins is to help get issues worked out ahead of the main launch, to test things, and so people can get their systems ready and tested in advance.

The main launch tonight will be the real deal. Smiley

Any cowntdown

https://countingdownto.com/countdown/expanse-main-launch-countdown-clock

Here is one for you.
hero member
Activity: 574
Merit: 500
Do I need to run step 2 at final launch? Nodes will be the same?  Undecided
Jump to: