From b9db28beb2dc6bbfe94b00070da9fd241c269fa3 Mon Sep 17 00:00:00 2001 From: Tomas Susanka Date: Wed, 16 May 2018 11:19:05 +0200 Subject: [PATCH] stellar: typo in comment removed see discussion at https://github.com/trezor/trezor-mcu/commit/8e8749dc6826996dd8dbf0fb3332bc817b9de946#r28978964 --- firmware/stellar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/stellar.c b/firmware/stellar.c index 80dd1eb13c..fbb449c4e5 100644 --- a/firmware/stellar.c +++ b/firmware/stellar.c @@ -99,7 +99,7 @@ void stellar_signingInit(StellarSignTx *msg) stellar_hashupdate_bytes(network_hash, sizeof(network_hash)); stellar_hashupdate_bytes(tx_type_bytes, sizeof(tx_type_bytes)); - // Public key comes from deriving the specified account path (we ignore the one sent by the client) + // Public key comes from deriving the specified account path uint8_t bytes_pubkey[32]; stellar_getPubkeyAtAddress(msg->address_n, msg->address_n_count, bytes_pubkey, sizeof(bytes_pubkey)); memcpy(&(stellar_activeTx.signing_pubkey), bytes_pubkey, sizeof(stellar_activeTx.signing_pubkey));