mirror of
https://github.com/monero-project/monero.git
synced 2025-05-05 05:34:59 -04:00
wallet2: fixes for export/import output flow
- only allow offline wallets to import outputs - don't import empty outputs - export subaddress indexes when exporting outputs
This commit is contained in:
parent
692f1d4e3d
commit
1e912ecd8a
4 changed files with 75 additions and 20 deletions
|
@ -40,8 +40,9 @@ except:
|
|||
N_MONERODS = 4
|
||||
|
||||
# 4 wallets connected to the main offline monerod
|
||||
# a wallet connected to the first local online monerod
|
||||
N_WALLETS = 5
|
||||
# 1 wallet connected to the first local online monerod
|
||||
# 1 offline wallet
|
||||
N_WALLETS = 6
|
||||
|
||||
WALLET_DIRECTORY = builddir + "/functional-tests-directory"
|
||||
FUNCTIONAL_TESTS_DIRECTORY = builddir + "/tests/functional_tests"
|
||||
|
@ -61,6 +62,7 @@ wallet_extra = [
|
|||
["--daemon-port", "18180"],
|
||||
["--daemon-port", "18180"],
|
||||
["--daemon-port", "18182"],
|
||||
["--offline"],
|
||||
]
|
||||
|
||||
command_lines = []
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue