mirror of
https://github.com/bisq-network/bisq.git
synced 2025-03-03 10:46:54 +01:00
Fix typos
This commit is contained in:
parent
90bf1388da
commit
a718c885fc
1 changed files with 8 additions and 8 deletions
|
@ -394,13 +394,13 @@ message GetBlocksRequest {
|
||||||
}
|
}
|
||||||
|
|
||||||
message GetBlocksResponse {
|
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;
|
repeated BaseBlock raw_blocks = 1;
|
||||||
int32 request_nonce = 2;
|
int32 request_nonce = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
message NewBlockBroadcastMessage {
|
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;
|
BaseBlock raw_block = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1581,12 +1581,12 @@ message BaseBlock {
|
||||||
}
|
}
|
||||||
|
|
||||||
message RawBlock {
|
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;
|
repeated BaseTx raw_txs = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Block {
|
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;
|
repeated BaseTx txs = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1604,12 +1604,12 @@ message BaseTx {
|
||||||
}
|
}
|
||||||
|
|
||||||
message RawTx {
|
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;
|
repeated BaseTxOutput raw_tx_outputs = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Tx {
|
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;
|
repeated BaseTxOutput tx_outputs = 1;
|
||||||
TxType txType = 2;
|
TxType txType = 2;
|
||||||
int64 burnt_bsq = 3;
|
int64 burnt_bsq = 3;
|
||||||
|
@ -1733,10 +1733,10 @@ message Cycle {
|
||||||
|
|
||||||
message DaoState {
|
message DaoState {
|
||||||
int32 chain_height = 1;
|
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 BaseBlock blocks = 2;
|
||||||
repeated Cycle cycles = 3;
|
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, BaseTxOutput> unspent_tx_output_map = 4;
|
||||||
map<string, Issuance> issuance_map = 5;
|
map<string, Issuance> issuance_map = 5;
|
||||||
repeated string confiscated_lockup_tx_list = 6;
|
repeated string confiscated_lockup_tx_list = 6;
|
||||||
|
|
Loading…
Add table
Reference in a new issue