Skip to content
This repository was archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #5750 from EOSIO/se_wallet_mid_2018
Browse files Browse the repository at this point in the history
Enable Secure Enclave wallet for 2018 MBP models
  • Loading branch information
b1bart authored Sep 28, 2018
2 parents c8d7ae5 + 196741a commit 2778d68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/wallet_plugin/se_wallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ se_wallet::se_wallet() : my(new detail::se_wallet_impl()) {
}
unsigned int major, minor;
if(sscanf(model, "MacBookPro%u,%u", &major, &minor) == 2) {
if(major >= 13 && minor >= 2) {
if((major >= 15) || (major >= 13 && minor >= 2)) {
my->populate_existing_keys();
return;
}
Expand Down

0 comments on commit 2778d68

Please sign in to comment.