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

Freewallet transaction problems

Florin

New member
Hello,

I have a freewallet v 1.0.19

I have sent and received dash transactions in the past.

I currently have a transaction that i sent to
Xr7RJwF9fvcMmtt1E7brvhfD11sU5s9oDq from
Xh1ahc7ep7TFAVkLRXqiA5mFTCYZ29pGEP

Of 11.73 dash.

The above transaction has been hanging for more than 12 hours. I tried restarting the phone but nothing seems to work. The weird thing is that i can't even find the transaction being brodcasted in dash explorer.

I was thinking to reinstall the wallet but I can't seem to have any option to back it up.

Can anybody help me with some advice about the situation?

Much appreciated.
 
Code:
 dash-cli getaddressmempool '{"addresses": ["Xh1ahc7ep7TFAVkLRXqiA5mFTCYZ29pGEP"]}'
[
]

https://chainz.cryptoid.info/dash/address.dws?Xh1ahc7ep7TFAVkLRXqiA5mFTCYZ29pGEP.htm

No tx was made, Xh1ahc7ep7TFAVkLRXqiA5mFTCYZ29pGEP still has 12.04989446 Dash.


Contact the freewallet first : https://freewallet.org/support/contact/


Code:
dash-cli help getaddressmempool
getaddressmempool

Returns all mempool deltas for an address (requires addressindex to be enabled).

Arguments:
{
  "addresses"
    [
      "address"  (string) The base58check encoded address
      ,...
    ]
}

Result:
[
  {
    "address"  (string) The base58check encoded address
    "txid"  (string) The related txid
    "index"  (number) The related input or output index
    "satoshis"  (number) The difference of satoshis
    "timestamp"  (number) The time the transaction entered the mempool (seconds)
    "prevtxid"  (string) The previous txid (if spending)
    "prevout"  (string) The previous transaction output index (if spending)
  }
]

Examples:
> dash-cli getaddressmempool '{"addresses": ["XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg"]}'
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "getaddressmempool", "params": [{"addresses": ["XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg"]}] }' -H 'content-type: text/plain;' http://127.0.0.1:9998/
 
Back
Top