diff --git a/docs/index.html b/docs/index.html index 75d7581..64470c5 100644 --- a/docs/index.html +++ b/docs/index.html @@ -86,7 +86,11 @@
Log in
- Not registered? click here! + Not registered? click here! +
+

Don't have FLO credentials?

+ Generate FLO credentials +
@@ -333,12 +337,8 @@

Enter the private key of FLO ID you want to register.

- Register + Register -
-

Don't have FLO credentials?

- Generate FLO credentials -
@@ -363,7 +363,7 @@ - Register these credentials + Keep your private key secure and don't share with anyone. diff --git a/src/market.js b/src/market.js index 883ae85..e98ebc1 100644 --- a/src/market.js +++ b/src/market.js @@ -365,7 +365,7 @@ function retryWithdrawalFLO() { if (!txid) throw Error("Transaction not successful"); //Transaction was successful, Add in DB - DB.query("UPDATE OutputFLO SET status=? WHERE id=?", ["WAITING_CONFIRMATION", req.id]) + DB.query("UPDATE OutputFLO SET status=?, txid=? WHERE id=?", ["WAITING_CONFIRMATION", txid, req.id]) .then(_ => null).catch(error => console.error(error)); }).catch(error => console.error(error)); })