Hi all,
Sent a payment from my core wallet and the fee was too low , Status: 0/unconfirmed, in memory pool , tried to use txconfirm but it says Invalid transaction
Transaction ID: a366a4a92d4332d1c2d0b3292ac7194bc4c73be76dfffd407c7caabfcb89a5f6
Will it go back to my wallet? Any help would be appreciated!
Thanks
If you used bitcoin core to send, you'll need to do some manual steps... Otherwise your wallet will keep rebroadcasting your transaction.
There are 2 options:
1) open the debug console, enter "abandontransaction [txid]"
2) close your wallet, restart with the command line parameter -zapwallettxes. Your wallet will now rescan all blocks and only take confirmed transactions into account
Now, you can wait untill most nodes dropped your transaction from their mempool, and you can try to re-create your transaction using the same unspent outputs but a higher fee.
good luck!
Sorry Im pretty new to this, did the abandontransaction in the console and it can up with this,
abandontransaction "txid"
Mark in-wallet transaction
as abandoned
This will mark this transaction and all its in-wallet descendants as abandoned which will allow
for their inputs to be respent. It can be used to replace "stuck" or evicted transactions.
It only works on transactions which are not included in a block and are not currently in the mempool.
It has no effect on transactions which are already conflicted or abandoned.
Closed the wallet ,how do I restart with command line parameter .. again sorry for my ignorance
no problem...
To tell you the truth, i just realised i forgot something... In order for abandontransaction to work, you need to start your wallet with the -walletbroadcast=0 argument, so my instructions were incomplete
However, the output you showed me leads me to believe you made an error in the command... Did you physically type?:
abandontransaction a366a4a92d4332d1c2d0b3292ac7194bc4c73be76dfffd407c7caabfcb89a5f6
In order to start bitcoin core with either -walletbroadcast=0 or -zapwallettxes, i actually need to know your OS and the path to bitcoin-qt.
For a "standard" windows installation, it'll be something like opening the command prompt and typing in:
"C:\Program Files\Bitcoin\bitcoin-qt.exe" -walletbroadcast=0
"C:\Program Files\Bitcoin\bitcoin-qt.exe" -zapwallettxes
for linux, it'll depend on wether or not bitcoin-qt is in your path... So it'll either be
bitcoin-qt -walletbroadcast=0
bitcoin-qt -zapwallettxes
Or
/usr/bin/bitcoin-qt -walletbroadcast=0
/usr/bin/bitcoin-qt -zapwallettxes