1
0
Fork 0
forked from lthn/blockchain

added missing parameter to open_wallet_response struct

This commit is contained in:
cryptozoidberg 2020-05-08 01:09:51 +02:00
parent e7851de6f7
commit 9344f2ccea
No known key found for this signature in database
GPG key ID: 22DEB97A54C6FDEC

View file

@ -431,7 +431,7 @@ public:
wallet_info wi;
std::string seed;
bool recovered;
uint64_t wallet_local_height;
uint64_t wallet_local_bc_size;
BEGIN_KV_SERIALIZE_MAP()
KV_SERIALIZE(wallet_id)
@ -439,7 +439,7 @@ public:
KV_SERIALIZE(wi)
KV_SERIALIZE(seed)
KV_SERIALIZE(recovered)
KV_SERIALIZE(wallet_local_height)
KV_SERIALIZE(wallet_local_bc_size)
END_KV_SERIALIZE_MAP()
};