Generated new cryptocoin but how to get balance in my account?

0

1

I have created new Cryptocurrency from litecoin's fork.

And I can connect more than 2 node with successfully.

But How to pull original balance in my wallet?

Let me share screenshot: https://ibb.co/gci8kn

Balance: 0 Unconfirmed: 0 Immature: 120 MIND.

How to transfer amount 120 MIND in original balance?

I did "setgenerate true" from debug window but it increases only Immature amount.

Please let me know about it. It is very important for it.

kiran malvi

Posted 2018-02-14T13:27:09.340

Reputation: 163

Don't you have to mine some blocks first, to create coins?Osias Jota 2018-02-14T13:29:28.463

@OsiasJota No, I don't have any mine. How to mine amount in my wallet? I create wallet from litecoin forkkiran malvi 2018-02-14T13:33:21.090

You should also fork a mining software and mine some blocks. Maybe the fork you did is already capable of doing that, but I never used Litecoin and can't tell how to put it to mine, I don't where to find this command or menu.Osias Jota 2018-02-14T13:43:23.863

Answers

0

Coins that are immature mean that you have not mined enough blocks for them to be spendable yet. If you did not change the COINBASE_MATURITY global variable, then you will need to mine 100 blocks before the immature coins become mature and spendable. Of course the process of mining produces new coins, so your immature balance will increase until you have mined 100 blocks.

Andrew Chow

Posted 2018-02-14T13:27:09.340

Reputation: 40 910

@moderator I have changed COINBASE_MATURITY=10 to 100 and again compile my coin using "make" command but still it is display in immature and >> as per you told "then you will need to mine 100 blocks" --> How to do this?kiran malvi 2018-02-15T04:58:06.410

You actually have to mine 1 block more than COINBASE_MATURITY in order for it to become mature. To mine blocks, use the setgenerate or generate commands.Andrew Chow 2018-02-15T05:14:26.967

@moderator: I have used "setgenerate true" function from debug mode but it is increasing only immature balance Let me share screenshot https://ibb.co/djjV0n

kiran malvi 2018-02-15T05:21:31.080

Increasing the immature balance means that it is mining blocks. Just wait a while and eventually those will become mature coins. Use getblockchaininfo and you will see how many blocks are in your blockchain. After a while, when you see your immature balance increase, use getblockchaininfo again and you should see that the blockchain has grown.Andrew Chow 2018-02-15T06:11:50.640

@moderator: Is there any other way to do mine my coin? like setup own mining and mine the block? something like that: https://bitcointalk.org/index.php?topic=1762002.0

kiran malvi 2018-02-15T07:42:16.490

You can use any mining software that uses the getblocktemplate protocol. Most modern mining software (and even old ones like cpuminer) support that. It won't really matter once the difficulty adjusts though.Andrew Chow 2018-02-15T16:49:36.360