From ba0e9cc0d38a4890dae18c08c1ac034145ba61fb Mon Sep 17 00:00:00 2001 From: Federico Kunze <31522760+fedekunze@users.noreply.github.com> Date: Sun, 2 May 2021 10:00:14 -0400 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Simon Warta <2603011+webmaster128@users.noreply.github.com> --- proto/cosmos/tx/v1beta1/tx.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/proto/cosmos/tx/v1beta1/tx.proto b/proto/cosmos/tx/v1beta1/tx.proto index 80e7998810..8f8564d39e 100644 --- a/proto/cosmos/tx/v1beta1/tx.proto +++ b/proto/cosmos/tx/v1beta1/tx.proto @@ -64,7 +64,7 @@ message SignDoc { } // SignDocTextual is the type used for generating sign bytes for SIGN_MODE_TEXTUAL. It is designed to be serialized -// as proto3 JSON following the rules defined Here: https://github.com/regen-network/canonical-proto3/blob/master/README.md#json. +// as proto3 JSON following the rules defined here: https://github.com/regen-network/canonical-proto3/blob/master/README.md#json. message SignDocTextual { // body is the processable content of the transaction TxBody body = 1; @@ -73,12 +73,12 @@ message SignDocTextual { // specifically signers, signer modes and fee AuthInfo auth_info = 2; - // chain_id is the unique identifier of the chain this transaction targets. + // chain_id is the identifier of the chain this transaction targets. // It prevents signed transactions from being used on another chain by an // attacker string chain_id = 3; - // account_number is the account number of the account in state + // account_number is the account number of the signing account in state uint64 account_number = 4; // sign_doc_sha256_hash is the SHA-256 hash of SignDoc. It is included here to reduce the malleability attack