Minor changes related to code review

This commit is contained in:
BTChip github
2022-03-22 08:20:07 +01:00
parent 375eb1cae1
commit d04ed9aef1
2 changed files with 5 additions and 9 deletions

View File

@@ -1,10 +1,8 @@
#include "shared_context.h"
uint32_t set_result_perform_privacy_operation() {
uint32_t tx = 0, i;
for (i=0; i<32; i++) {
for (uint8_t i=0; i<32; i++) {
G_io_apdu_buffer[i] = tmpCtx.publicKeyContext.publicKey.W[32 - i];
}
tx = 32;
return tx;
return 32;
}