Conceal Wiki

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
faq [2020/02/17 05:56] – [Q: How to mine?] boot2thrillfaq [2022/10/27 17:15] (current) – [Q: How to compile a wallet on *nix?] lolitalollipop
Line 405: Line 405:
 Note: If you use sendFusionTransaction on an address that does not have sufficient fuseable inputs, you will get an "index out of range" error. Note: If you use sendFusionTransaction on an address that does not have sufficient fuseable inputs, you will get an "index out of range" error.
  
-**Q: What happens we have thousands of outputs?**+**Q: What happens if we have thousands of outputs?**
  
 When dealing with a wallet where the number of smaller outputs have built up over time, then you will need to use smaller and smaller values for the threshold. In some cases, use a threshold of 10 or lower to fuse the smallest values. In the rare scenario where there are too many small outputs even at the lowest threshold, you will need to export the keys for that wallet and use the CLI or GUI wallets to run multiple optimization rounds. When dealing with a wallet where the number of smaller outputs have built up over time, then you will need to use smaller and smaller values for the threshold. In some cases, use a threshold of 10 or lower to fuse the smallest values. In the rare scenario where there are too many small outputs even at the lowest threshold, you will need to export the keys for that wallet and use the CLI or GUI wallets to run multiple optimization rounds.
Line 411: Line 411:
 ==== Q: How to compile a wallet on *nix? ==== ==== Q: How to compile a wallet on *nix? ====
  
-  * git clone https://github.com/TheCircleFoundation/concealx.git + * git clone https://github.com/ConcealNetwork/conceal-desktop
-  * cd concealx +
-  * mkdir build +
-  * cd build +
-  * cmake .. +
-  * cd .. +
-  * make+
  
 + * cd conceal-desktop
 +
 + * rm -rf cryptonote
 +
 + * git clone https://github.com/ConcealNetwork/conceal-core cryptonote
 +
 + * make build-release
 +
 + * mkdir bin && mv build/release/conceal-desktop bin/
 +
 + * make clean
 ==== Q: How to delete blockchain data and sync from scratch? ==== ==== Q: How to delete blockchain data and sync from scratch? ====