diff --git a/libraries/wallet/include/graphene/wallet/wallet.hpp b/libraries/wallet/include/graphene/wallet/wallet.hpp index 311617ae..d64c784d 100644 --- a/libraries/wallet/include/graphene/wallet/wallet.hpp +++ b/libraries/wallet/include/graphene/wallet/wallet.hpp @@ -194,6 +194,7 @@ struct exported_account_keys { string account_name; vector> encrypted_private_keys; + vector public_keys; }; struct exported_keys @@ -1226,7 +1227,7 @@ FC_REFLECT( graphene::wallet::brain_key_info, (pub_key) ); -FC_REFLECT( graphene::wallet::exported_account_keys, (account_name)(encrypted_private_keys) ) +FC_REFLECT( graphene::wallet::exported_account_keys, (account_name)(encrypted_private_keys)(public_keys) ) FC_REFLECT( graphene::wallet::exported_keys, (password_checksum)(account_keys) )