mirror of
https://github.com/monero-project/monero.git
synced 2025-08-08 15:22:16 -04:00
Merge pull request #6241
ae84ec90
wallet-cli/rpc: allow sweep_all to use outputs in all subaddresses within an account (stoffu)
This commit is contained in:
commit
5bd496e8ef
3 changed files with 24 additions and 6 deletions
|
@ -761,6 +761,7 @@ namespace wallet_rpc
|
|||
std::string address;
|
||||
uint32_t account_index;
|
||||
std::set<uint32_t> subaddr_indices;
|
||||
bool subaddr_indices_all;
|
||||
uint32_t priority;
|
||||
uint64_t ring_size;
|
||||
uint64_t outputs;
|
||||
|
@ -776,6 +777,7 @@ namespace wallet_rpc
|
|||
KV_SERIALIZE(address)
|
||||
KV_SERIALIZE(account_index)
|
||||
KV_SERIALIZE(subaddr_indices)
|
||||
KV_SERIALIZE_OPT(subaddr_indices_all, false)
|
||||
KV_SERIALIZE(priority)
|
||||
KV_SERIALIZE_OPT(ring_size, (uint64_t)0)
|
||||
KV_SERIALIZE_OPT(outputs, (uint64_t)1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue