net: Add network portals to allow swaps between networks.

This commit is contained in:
tecnovert
2025-07-15 18:43:03 +02:00
parent 1e0a7c7395
commit e73e084a6d
20 changed files with 1933 additions and 557 deletions

View File

@@ -1384,7 +1384,7 @@ class Test(BaseTest):
# Entire system is locked with Particl wallet
jsw = read_json_api(1800, "wallets/dcr")
assert "Coin must be unlocked" in jsw["error"]
assert "must be unlocked" in jsw["error"]
read_json_api(1800, "unlock", {"coin": "part", "password": "notapassword123"})
@@ -1395,7 +1395,7 @@ class Test(BaseTest):
read_json_api(1800, "lock", {"coin": "part"})
jsw = read_json_api(1800, "wallets/part")
assert "Coin must be unlocked" in jsw["error"]
assert "must be unlocked" in jsw["error"]
read_json_api(
1800,