• Forum has been upgraded, all links, images, etc are as they were. Please see Official Announcements for more information

Dash Core Wallet - Balance 0 after wrong amount error

wold27

New member
t import wallet.dat on a new laptop, fully synced with a positive balance, I went to send, then it said error, and my balance went to 0…. but I checked transaction and there is only the coins I received and the question mark on transaction I just tried to send. Please advise

address is XbjgnbhwSCa4wUek1Qc9kx9wE8v9LvxRps
 
Last edited:
t import wallet.dat on a new laptop, fully synced with a positive balance, I went to send, then it said error, and my balance went to 0…. but I checked transaction and there is only the coins I received and the question mark on transaction I just tried to send. Please advise

address is XbjgnbhwSCa4wUek1Qc9kx9wE8v9LvxRps

Are there other addresses in the wallet? The address you listed is empty since March of last year - see block explorer. Also, are you certain it was fully synced when it showed a positive balance?
 
this is actually the latest transaction I did successfully: d2627e93006249030c3019b3c3674da12041d3549832715e0c7dd8121e7269e
 
this is actually the latest transaction I did successfully: d2627e93006249030c3019b3c3674da12041d3549832715e0c7dd8121e7269e

What version of the Dash Core wallet are you using?
That transaction does not show up a block explorer. Can you double-check the Txid?
 
1d2627e93006249030c3019b3c3674da12041d3549832715e0c7dd8121e7269e-000
Dash Core version v0.12.2.3 (64-bit) on Ubuntu 16.04
 
Update, looked into dash explorer and found the address at XofogpAGgqQYHexsuQ2p3NSFn3cMDyzvuj with the amount I expected but it isnt showing up in my wallet.
How can I tell if it is in the wallet.dat I have?
 
Your wallet seems to be having trouble showing consistent information - try to force a rescan (Tools > Wallet repair > Rescan) to check the entire blockchain for balances on addresses in your wallet. Regarding your question, you can check if an address is in a wallet from Tools > Debug console. Type the following:
Code:
validateaddress XofogpAGgqQYHexsuQ2p3NSFn3cMDyzvuj

You will see output similar to the following (this is from my Dash Core wallet):
Code:
{
  "isvalid": true,
  "address": "XofogpAGgqQYHexsuQ2p3NSFn3cMDyzvuj",
  "scriptPubKey": "76a9148e676da18c6fb46ca509a2ba5ebf265e6b1b2f7b88ac",
  "ismine": false,
  "iswatchonly": false,
  "isscript": false
}

"ismine" will be "true" if your wallet holds the private key to the specified Dash address.
 
Back
Top