github.com/piotrnar/gocoin@v0.0.0-20240512203912-faa0448c5e96/website/gocoin_issues.html (about) 1 <html> 2 <head> 3 <link rel="stylesheet" href="style.css" type="text/css"> 4 </head> 5 <body> 6 <h1>Known issues</h1> 7 8 <h2>Volatile UTXO database</h2> 9 10 When you start client node for the first time, it will go trough the process of downloading entire bitcoin 11 block chain and building the UTXO database. 12 To speed up this process the database is not being flushed to disk as the block processing goes on.<br> 13 <br> 14 The node only writes it to disk when either all the blocks are downloaded and processed or when the node's shutdown has 15 been requested from a user interface (e.g. text command 'quit' was given). 16 If you kill the process or reboot the machine, you will loose all your hard worked UTXO changes! 17 Therefore, <u>to save the work as the new blocks are being processed, you should once for awhile quit the node and start it again</u>. 18 This BTW may also have a positive impact on memory consumption, allowing you to set up the node with less RAM (e.g. 13GB).<br> 19 <br> 20 When the node is synchronized, it flushes UTXO database to disk once for awhile. 21 Killing it then won't have such a bad consequences, as it will start with the most recently written version of the database 22 and only apply the data from the blocks that came later.<br> 23 <br> 24 25 <h2>Coinbase maturity</h2> 26 According to the block chain protocol, generated coins can be spent only after 100 confirmations.<br> 27 Users should be aware that fetching a wallet's balance from the client returns also immature coinbase transactions.<br> 28 Because wallet has no way of knowing if a coinbase output is mature enough, it always considers it mature.<br> 29 But <u>be aware that the network will not accept your signed transaction until all of the mined coins that it is trying to spend 30 get at least 100 confirmations</u>.<br> 31 <br> 32 <!-- 33 <h2>Node becoming non-responsive</h2> 34 It has been observed on one system (AMD Ryzen 1800X CPU, Windows OS) that the client node would 35 become unresponsive after a random time of being online. 36 While being non-responsive, the client process seemed to be fully consuming one of the CPU threads (cores). 37 On that specific platform, this would averagely happen about every three days, although sometimes it was hours, other times a week.<br> 38 <br> 39 It does not affect the OS stability and the client node can be easily killed and restarted upon an occurrence of such a malfunction.<br> 40 <br> 41 The nature of this problem is not completely clear, although it seems to have something to do 42 with the computer's clock being updated.<br> 43 Therefore, <u>the solution for this problem is to turn off internet time sync</u> in the OS, for the time of running the node.<br> 44 <br> 45 --> 46 <h2>Mining API</h2> 47 The mining RPC API is experimental and had been implemented in March 2016 - long before the segwit support was added.<br> 48 It was tested on Testnet3 and worked well, but only for one mining setup. 49 It has not been used ever since then and <u>at this moment shall be considered unusable</u>.<br> 50 If you are interested in using Gocoin node for mining, please contact me, so I can help you with any issues that may need resolving, 51 before you start throwing any hash power onto it.<br> 52 <br> 53 54 <h2>Litecoin support in wallet</h2> 55 The wallet <u>only supports Litecoin's P2PKH address types</u> (such that start from <code>L...</code>).<br> 56 No <b>segwit</b> or <b>multisig</b> suport for Litecoin. It might work, but has not been tested.<br> 57 <br> 58 </body> 59 </html>