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

Enable Secure Enclave wallet for 2018 MBP models #5750

Merged
merged 1 commit into from
Sep 28, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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