Author Topic: Error in the transaction  (Read 3124 times)

0 Members and 1 Guest are viewing this topic.

Offline Danc

  • Newbie
  • *
  • Posts: 1
  • Karma: +0/-0
  • Newcomer
    • View Profile
Error in the transaction
« on: February 20, 2015, 07:16:14 PM »
Hi! Help please , the error in the transaction , the money is gone , but did not reach the destination .. what do i do?(((

Статус: 0/не подтверждено
Дата: 10.02.2015 19:15
Для: xxxxxxxxxxxxxxxxxxx
Дебет: -xxxx.xx FST
Комиссия: -xxx.xx FST
Чистая сумма: -xxxx.xx FST
ID транзакции: xxxxxxxxxxxxxxxxxxxxxxxx



Offline m0gliE

  • Administrator
  • Jr. Member
  • *****
  • Posts: 60
  • Karma: +7/-0
  • take me to the jungle
    • View Profile
    • The Computer Field
Re: Error in the transaction
« Reply #1 on: February 24, 2015, 10:32:39 AM »
Hi! Help please , the error in the transaction , the money is gone , but did not reach the destination .. what do i do?(((

Статус: 0/не подтверждено
Дата: 10.02.2015 19:15
Для: xxxxxxxxxxxxxxxxxxx
Дебет: -xxxx.xx FST
Комиссия: -xxx.xx FST
Чистая сумма: -xxxx.xx FST
ID транзакции: xxxxxxxxxxxxxxxxxxxxxxxx

You'll need to dump your private key for your wallet address and then import that into a newly generated wallet.dat.

go to your debug console.

Code: [Select]
> Help > Debug
type listaccounts to list the accounts and select the one which contains your coins.
Generally it's the default account.

Code: [Select]
listaccounts ""
then type,

Code: [Select]
getaccountaddress ""
Dump your private key for that address.

Code: [Select]
dumpprivkey ""
Temporarily copy you privkey into notepad, and close Fastcoin-qt.
Go into to your fastcoin data folder

Code: [Select]
%appdata%/fastcoin
Rename your wallet.dat to something like wallet_backup.dat.
Open Fastcoin-qt, and it will generate a new wallet.dat.

Go back into your console, and import your private key.

Code: [Select]
Help > Debug > Console
Code: [Select]
importprivkey paste-your-private-key-here
Now be patient, maybe 10-20 mins for it import and re-scan.

You can type getinfo and when it finally returns the info,
you know the process has completed and your key has been imported.

Do not close and restart Fastcoin-qt until importing is complete.
All your coins will be contained in your new wallet.
Be sure to include a decent tx fee next time so it gets relayed.

Code: [Select]
>Settings > Options > Wallet > Pay TX Fee 0.001000000 or something
Also try using the coin control features for selecting your inputs.
You can also use this to monitor your transaction byte size to ensure you're including enough fee for the tx.

Code: [Select]
>Settings > Options > Display > Coin Control Features.
If you have any questions or need more help, jump on IRC,

Code: [Select]
> irc.freenode.net #fastcoin
« Last Edit: February 24, 2015, 11:49:54 AM by m0gliE »