Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some even more typos #3659

Merged
merged 1 commit into from
Nov 22, 2019
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
16 changes: 8 additions & 8 deletions common/src/main/proto/pb.proto
Original file line number Diff line number Diff line change
Expand Up @@ -394,13 +394,13 @@ message GetBlocksRequest {
}

message GetBlocksResponse {
// Because of the way how PB implements inheritence we need to use the super class as type
// Because of the way how PB implements inheritance we need to use the super class as type
repeated BaseBlock raw_blocks = 1;
int32 request_nonce = 2;
}

message NewBlockBroadcastMessage {
// Because of the way how PB implements inheritence we need to use the super class as type
// Because of the way how PB implements inheritance we need to use the super class as type
BaseBlock raw_block = 1;
}

Expand Down Expand Up @@ -1581,12 +1581,12 @@ message BaseBlock {
}

message RawBlock {
// Because of the way how PB implements inheritence we need to use the super class as type
// Because of the way how PB implements inheritance we need to use the super class as type
repeated BaseTx raw_txs = 1;
}

message Block {
// Because of the way how PB implements inheritence we need to use the super class as type
// Because of the way how PB implements inheritance we need to use the super class as type
repeated BaseTx txs = 1;
}

Expand All @@ -1604,12 +1604,12 @@ message BaseTx {
}

message RawTx {
// Because of the way how PB implements inheritence we need to use the super class as type
// Because of the way how PB implements inheritance we need to use the super class as type
repeated BaseTxOutput raw_tx_outputs = 1;
}

message Tx {
// Because of the way how PB implements inheritence we need to use the super class as type
// Because of the way how PB implements inheritance we need to use the super class as type
repeated BaseTxOutput tx_outputs = 1;
TxType txType = 2;
int64 burnt_bsq = 3;
Expand Down Expand Up @@ -1733,10 +1733,10 @@ message Cycle {

message DaoState {
int32 chain_height = 1;
// Because of the way how PB implements inheritence we need to use the super class as type
// Because of the way how PB implements inheritance we need to use the super class as type
repeated BaseBlock blocks = 2;
repeated Cycle cycles = 3;
// Because of the way how PB implements inheritence we need to use the super class as type
// Because of the way how PB implements inheritance we need to use the super class as type
map<string, BaseTxOutput> unspent_tx_output_map = 4;
map<string, Issuance> issuance_map = 5;
repeated string confiscated_lockup_tx_list = 6;
Expand Down