monero/src/wallet
moneromooo-monero b750fb27b0
Pruning
The blockchain prunes seven eighths of prunable tx data.
This saves about two thirds of the blockchain size, while
keeping the node useful as a sync source for an eighth
of the blockchain.

No other data is currently pruned.

There are three ways to prune a blockchain:

- run monerod with --prune-blockchain
- run "prune_blockchain" in the monerod console
- run the monero-blockchain-prune utility

The first two will prune in place. Due to how LMDB works, this
will not reduce the blockchain size on disk. Instead, it will
mark parts of the file as free, so that future data will use
that free space, causing the file to not grow until free space
grows scarce.

The third way will create a second database, a pruned copy of
the original one. Since this is a new file, this one will be
smaller than the original one.

Once the database is pruned, it will stay pruned as it syncs.
That is, there is no need to use --prune-blockchain again, etc.
2019-01-22 20:30:51 +00:00
..
api core, wallet: remember original text version of destination address 2019-01-18 16:58:47 +00:00
CMakeLists.txt Merge pull request #4945 2018-12-31 15:53:59 -06:00
message_store.cpp message_store: fix error message adding const char * with offset 2018-12-22 15:52:10 +00:00
message_store.h message_store: init me field 2019-01-07 16:41:34 +00:00
message_transporter.cpp MMS (Multisig Messaging System): Initial version 2018-12-12 21:49:20 +01:00
message_transporter.h MMS (Multisig Messaging System): Initial version 2018-12-12 21:49:20 +01:00
node_rpc_proxy.cpp Removed a lot of unnecessary includes 2018-11-15 17:29:34 +01:00
node_rpc_proxy.h v8: per byte fee, pad bulletproofs, fixed 11 ring size 2018-09-11 13:38:07 +00:00
ringdb.cpp Removed a lot of unnecessary includes 2018-11-15 17:29:34 +01:00
ringdb.h record blackballs as amount/offset, and add export ability 2018-09-10 09:04:18 +00:00
wallet2.cpp Pruning 2019-01-22 20:30:51 +00:00
wallet2.h wallet2: remember which output keys map to which key images 2019-01-16 19:58:13 +00:00
wallet_args.cpp wallet: warn if lockable memory limit is too low 2018-11-03 20:09:28 +00:00
wallet_args.h wallet cli/rpc: terminate execution with code 0 when --help or --version is given 2018-04-22 11:48:44 +09:00
wallet_errors.h MMS (Multisig Messaging System): Initial version 2018-12-12 21:49:20 +01:00
wallet_rpc_server.cpp core, wallet: remember original text version of destination address 2019-01-18 16:58:47 +00:00
wallet_rpc_server.h wallet-rpc: add on_restore_deterministic RPC call. 2018-10-29 18:19:42 +01:00
wallet_rpc_server_commands_defs.h wallet_rpc_server: add all field to export_key_images 2018-12-24 13:00:29 +00:00
wallet_rpc_server_error_codes.h Add RPC error code for non-deterministic wallet 2018-10-18 23:14:06 +02:00