fix(net): add missing auth flags to prove version command

This commit is contained in:
fallenoak 2023-01-09 22:46:33 -06:00
parent b71263d83d
commit 13c55837d7
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -345,6 +345,10 @@ void Grunt::ClientLink::ProveVersion(const uint8_t* versionChecksum) {
// TODO cd keys
command.Put(static_cast<uint8_t>(0));
// TODO pin / matrix / token fields
uint8_t authFlags = 0x0;
command.Put(authFlags);
} else {
// TODO
}