Aplikasi android penambang bitcoin charts
37 comments45uv5 1101 cex exchange
This is a follow up to my previous post which discussed how to download and compile Litecoin code and then run the Litecoin daemon litecoind. In order to experiment on the Litecoin testnet, we need testnet Litecoins. One way to get these coins is to try and mine them.
In the context of cryptocurrencies like Bitcoin and Litecoin, mining is the process by which a total ordering of blocks containing transactions is established by the network. Miners are network participants that periodically compete to solve a computationally hard problem. This process is the only way to generate new coins in Bitcoin and Litecoin. In a later post, I will expound on the computational problem that miners attempt to solve.
Today, on the mainnet, miners use ASIC-based machines for mining. For our purposes, since we will be using the testnet to learn more about the internals of Litecoin, we would make use of a CPU-based miner. In order to receive mining rewards, you need to specify an address. When minerd successfully mines a block, the reward amount which includes the newly generated coins and the fees for all the transactions in the new block will be paid to the address that the miner specified.
This is known as the coinbase address. You can generate a new address as follows:. The username and password in the above command should be the same as the one configured in the litecoind configuration file litecoin. Since Litecoin uses scrypt, the choice is obvious. Once you start minerd, it will start the mining process, some time later, when it successfully mines a block, you will see something like:.
Once you see output like the above, the coinbase address will be sent the reward amount of coins. Since this amount will be paid using a transaction, you can list the recent transactions using:. Notice the category in the above output is immature. This means that the reward is not available to spend yet and will only become eligible to spend after a certain number of blocks have been mined after the block that generated this reward. If you execute the same command at a later time, you will see that the category would have changed to generate.
Then, you can verify that you have the reward amount by checking your current balance. A journal of my thoughts. BigEndian Learn, love, loiter. Solo CPU Mining 07 Aug This is a follow up to my previous post which discussed how to download and compile Litecoin code and then run the Litecoin daemon litecoind.
You can generate a new address as follows: Once you start minerd, it will start the mining process, some time later, when it successfully mines a block, you will see something like: Since this amount will be paid using a transaction, you can list the recent transactions using: You just got some shiny new testnet Litecoins: Related Posts Litecoin testnet 06 Aug Hello!