chainhead
Hi, did you ever manage to get the secret key of the root account from the logs?
I cannot seem to get it right, I set the log level to TRACE and still nothing..
Any help will really be appreciated
:-)

Yes, Did you run "stellar-core --newdb"?

15 days later

chainhead Did you manage to send lumens from root account to new account?

I am following the exact code as given in "https://www.stellar.org/developers/guides/get-started/transactions.html"

It is giving be bad sequence error!!

CreateAccountOperation op = new CreateAccountOperation.Builder(destination, "100").build();
Transaction transaction = new Transaction.Builder(sourceAccount).addOperation(op).addMemo(Memo.text("Test Transaction")).build();
transaction.sign(source);
SubmitTransactionResponse response = server.submitTransaction(transaction);

  • zcc replied to this.

    zcc Thanks zcc but I am not using docker - I have built the core manually.

    18 days later

    bkolobara How do we load root account if more lumen (>100 billion) is required?

      a month later

      bkolobara I'm looking at https://github.com/stellar/stellar-core/blob/048971af22b417e4216eb0c740f19643b1377f5d/src/ledger/LedgerManagerImpl.cpp#L72

      It seems the values hardcoded in LedgerManager::GENESIS_LEDGER_TOTAL_COINS is quite more than 100 billion.

      Is there a calculation somewhere else which gives 100 billion or I am looking at the wrong place for the total initial number of coins in the stellar network?

        How to create a friendbot account for private network?

          8 months later

          bks i have the same problem . Have you answer for the promble?

          • Jem replied to this.

            Mrnewliu Do you really need a friendbot? Or are you just looking for a way to create accounts? Because you can do the latter without the former.

            a month later

            Is the NODE_SEED value we set in the config file of stellar-core is what root account secret is ?

              bkolobara Thanks for reply. But I am not able to see it when I run the core.

              6 months later

              Maybe try with an older version of stellar core? Removing "signers" is a quite recent change, so your tutorial might not be compatible with it.

              2 months later