Merge pull request #7852

8d94d08 replace 'multisig()' with 'get_multisig_status()' using multisig_account_status and including '.kex_is_done' member (koe)
This commit is contained in:
luigi1111 2024-05-20 22:35:57 -05:00
commit 3a47cdad13
No known key found for this signature in database
GPG key ID: F4ACA0183641E010
11 changed files with 197 additions and 154 deletions

View file

@ -2323,12 +2323,14 @@ namespace wallet_rpc
struct response_t
{
bool multisig;
bool kex_is_done;
bool ready;
uint32_t threshold;
uint32_t total;
BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE(multisig)
KV_SERIALIZE(kex_is_done)
KV_SERIALIZE(ready)
KV_SERIALIZE(threshold)
KV_SERIALIZE(total)