Post
Topic
Board Service Announcements (Altcoins)
Re: [ANN] Forknote - create your own Cryptonote network
by
PaperUnlimited
on 24/12/2017, 04:30:02 UTC
@ slb

Could you tell me what I'm doing wrong? These are the steps I've taken so far.

Step 1: I have 2 VPS's one is ubuntu 16.04 and one is 16.10. Both have Forknote .tar.gz downloaded and extracted.

Step 2: On my personal computer (ubuntu 16.04),I used http://forknote.net/create/ to create a premine coin1.config file. This coin1.conf file does not have any wallet addresses, but includes the genesis tx hex created by the "Create Cryptonote blockchain" form.

Step 3: Before creating the blockchain, I create the premine wallet addresses using the coin1.conf file created in step 2. I use the "Creating simplewallet addresses" instructions from here: http://forknote.net/guides/setup-private-blockchain/

Step 4: I create a new coin2.conf file, using the Forknote form http://forknote.net/create/, this includes the addresses created in step 3 and a new genesis tx hex created by the "Create Cryptonote blockchain" form.

Step 5: I setup both nodes using coin2.conf following the steps here: http://forknote.net/guides/starting-seed-node/

Step 6: I create-the-blockchain/start-the-daemon on my personal computer using coin2.conf. At this point I get "2017-Dec-24 05:03:42.104763 WARNING [95.183.52.40:39431 INC] Exception in connectionHandler: TcpConnection::read" on the first node before the other node is on, once the other node is on it syncs up.

Step 7: I open a new terminal on my personal computer and run
Code:
./simplewallet --config-file configs/coin2.conf
This is where the problem is, I get
Code:
user@computer ~/forknote-linux $ ./simplewallet --config-file configs/coin2.conf
Success: Configuration file openned
2017-Dec-23 21:24:19.366473 INFO    forknote wallet v2.1.2.1251 ()
Nor 'generate-new-wallet' neither 'wallet-file' argument was specified.
What do you want to do?
[O]pen existing wallet, [G]enerate new wallet file, [I]mport wallet or [E]xit.
o
Specify wallet file name (e.g., wallet.bin).
Wallet file name: MY.wallet
password: ********
2017-Dec-23 21:24:34.955779 INFO    Loading wallet...
Sync from timestamp: 0
2017-Dec-23 21:24:35.089169 ERROR   [BlockchainSynchronizer] Failed to load: genesis block hash does not match stored state, read 920157d9c5c1b57b6340f8f895fa089bf4a9185d08ca8a73295fa2cf42402fd5, expected 203fcc3975b3e946dea714c9cf99b279afa710ee720ddbe3ca691087564b4606
2017-Dec-23 21:24:35.089497 INFO    Opened wallet: LfC2kwDQQM226yWGarr92YKJeC9cje2qZDvW3vymeX5ZDeJdY8rsaGRgBLLjJR43HcGh4sxFx7Zmv6JtUSdrZLBCQjxc51j
2017-Dec-23 21:24:35.089856 INFO    **********************************************************************
Use "help" command to see the list of available commands.
**********************************************************************

What am I doing wrong?