My wallet dropped while I was sending 30 million coins in my wallet. I haven't received a coin yet in my new wallet.
The condition indicates that it's unknown.
How can we get help in this case?
From : Le3yygnCQg8upLHvrfeXJnp6umxiK7XZ2G
To : LRpsmNeLsN38kbyDA5dgdwypFMJSk3YXcM
State: 0/ unknown
date: 2017-10-12 22:16
to: Daoni LRpsmNeLsN38kbyDA5dgdwypFMJSk3YXcM
: -30000000.0056 LINDA
fee: -0.0056 LINDA
amunt: -30000000.0112 LINDA
Remittance ID: 51b3021f5c539ffaf86e9284f33394eea409bd78903348662ef078a2d8205da5-000
try to resend transaction
This solution is slightly more complex, but is still very easy and has always worked for me instantaneously and without fail. What we're going to do is get the raw hex data (the raw binary transaction message converted into its numeric hexadecimal equivalent) and manually re-broadcast it to the network from a different node. If all goes well, this will cause the transaction message to instantly spread across the network and finally make it to all the peers online and, most importantly, the miners and mining pools which will add it to the next block and quickly confirm it. Please follow the steps below:
1) Click on the Transactions tab in your client window and select the frozen transaction
2) Right-click on the transaction and select Show Transaction Details to bring up the Transaction Details pop-up window
3) Now highlight the entire Transaction ID number and copy it to the clipboard (i.e., right-click and select Copy or hit Ctrl+C)
EXAMPLE: 52123febc4f61fe384252a64ee7daebabc3cabae97b7954b90aa70232794d5f0
4) Now close the Transaction Details window and select Help >> Debug Window in the top menu bar of your client window. The Debug Window has two tabs: Information and Console. You need to switch to the Console tab so we can input commands for the Darkcoin/Bitcoin client.
5) Now we're going to use the getrawtransaction command to obtain the raw transaction data in hex form. The getrawtransaction command accepts a transaction ID number as its parameter. So to use it, we will call the getrawtransaction method and feed it our transaction ID we just copied from the Transaction Details window a moment ago. Type in the following command and press Enter to execute:
getrawtransaction
Obviously, you replace the part with your transaction ID number you copied from the Transaction Details window in Step #3. For example, I typed in the following:
getrawtransaction 52123febc4f61fe384252a64ee7daebabc3cabae97b7954b90aa70232794d5f0
6) As soon as you press enter, there should be a response in the Console window. My console window showed me the following response:
getrawtransaction 52123febc4f61fe384252a64ee7daebabc3cabae97b7954b90aa70232794d5f0
0100000001a09c05d6f32801adc8592ed17214b88d8cfd643448d6cfa5fadd1a0c4b34cdf400000 0006b483045022071be3697934aa53ed86f217b34531e3f4f0ecb6c41df8f221f536e5005621ee4 022100fe06e286452a3cdecb8fecd67f05d8d7b9357759c9cf86f7500d2aaf2e12b757012103abb 9442be150b2499450c29f76880430ee1959b3c419b3dbb8f5289a34cf70ceffffffff01605af405 000000001976a914edf6e6c268f77059c701fee4c05276af662fbed988ac00000000
The "getrawtransaction " line will be displayed in a bluish-green color if the command succeeds, and beneath it your client will respond giving you the raw transaction data (in black text). This is what we want! Now we will highlight all of the hexadecimal data (just the black text; don't copy the command line where you typed getrawtransaction ) and copy it to our clipboard.
7) Now that we have obtained the raw hex data of our frozen transaction, we can get it unfrozen by re-broadcasting it to the network through a different node. You will either need another computer running the client software (Bitcoin-qt or Darkcoin-qt) with a good connection to the network or you will need a friend online to help you complete the final part of the process. You can't do it with the same client from which the transaction originated because it already knows about the transaction and will reject it as invalid or a double-spending tx.
But now we need to copy our raw tx data somewhere that we can copy+paste it from on another computer, or send it to a friend or helper who will help us complete the process. When I did it, I just took my tx data and pasted it up at PasteBin.com so I could get on my other PC and copy it. But you can also send it to a friend (or yourself) through email, Skype or a private message on forums. If you don't have another computer to use and can't find anyone to help you, you can just paste your raw transaction data here or pm me and I will help you.
Alternatively, if you're a more experienced user, you can do this on the same PC from which the problem originated. To do so, you need to navigate to your Bitcoin or Darkcoin data directory (default data directory for Windows users is: C:\Users\\AppData\Roaming\Darkcoin) and make a copy of it in an easily accessible location (like your desktop). Open the new copy of the data directory and delete the wallet.dat file inside. Just make sure you're not deleting your original wallet.dat file or that you have a back-up copy of it! Once you've done this, you need to launch a second instance of Darkcoin-qt or Bitcoin-qt and tell it to use the new copy of your data directory as its data directory. You do this by launching your client with the -datadir= command and proceeding to the next step...
Example (Windows):
darkcoin-qt.exe -datadir=C:\Users\DRKLord\Desktop\DataDirCopy
Now that we have a second node (Darkcoin-qt running on different computer, a friend helping us remotely or a second local instance of Darkcoin-qt) we can complete the process by using the sendrawtransaction command and re-broadcasting the frozen transaction to the network. To do so, we must go to Help >> Debug Window >> Console on our other client node to open the Console window and complete the following steps (if you have a friend online helping you, he/she needs to do these steps):
A) Open the Console window in the second Darkcoin/Bitcoin client (or have your friend open their Console and do the following)
B) Now copy the raw transaction data we got from the getrawtransaction command earlier and saved on PasteBin or stored elsewhere
C) We must now input the sendrawtransaction command and press the Enter key:
Command:
sendrawtransaction
Example:
sendrawtransaction 0100000001a09c05d6f32801adc8592ed17214b88d8cfd643448d6cfa5fadd1a0c4b34cdf400000 0006b483045022071be3697934aa53ed86f217b34531e3f4f0ecb6c41df8f221f536e5005621ee4 022100fe06e286452a3cdecb8fecd67f05d8d7b9357759c9cf86f7500d2aaf2e12b757012103abb 9442be150b2499450c29f76880430ee1959b3c419b3dbb8f5289a34cf70ceffffffff01605af405 000000001976a914edf6e6c268f77059c701fee4c05276af662fbed988ac00000000
D) If done correctly your input should show up in the Console now in bluish-green text, as I demonstrated above, and your transaction has now been re-broadcasted to the network and should now fully propagate and soon receive confirmations!
That's it, we did it! I've never had a problem with this method failing or not working, but if it doesn't work for you do not despair. If you're not an advanced or experienced user you may have just done it wrong and need to get some help. Or maybe there is another problem requiring some help from a more experienced user. In any case, don't panic. Coins don't just evaporate into thin air, and there's always a solution! ;-)