From 4fbc5512034eb00f7201bbc4a83c8d26b50f426e Mon Sep 17 00:00:00 2001 From: Matt Witherspoon <32485495+spoonincode@users.noreply.github.com> Date: Wed, 13 Sep 2023 11:32:27 -0400 Subject: [PATCH] add yield for Secure Enclave wallet's to_string() call --- plugins/wallet_plugin/se_wallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/wallet_plugin/se_wallet.cpp b/plugins/wallet_plugin/se_wallet.cpp index 8f461401ac..18f745ddb7 100644 --- a/plugins/wallet_plugin/se_wallet.cpp +++ b/plugins/wallet_plugin/se_wallet.cpp @@ -371,7 +371,7 @@ bool se_wallet::import_key(string wif_key) { string se_wallet::create_key(string key_type) { EOS_ASSERT(key_type.empty() || key_type == "R1", chain::unsupported_key_type_exception, "Secure Enclave wallet only supports R1 keys"); - return my->create().to_string(); + return my->create().to_string({}); } bool se_wallet::remove_key(string key) {