mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-04 09:48:19 +01:00
lnrpc: fix description of tx_index to be correct[skip ci]
This commit is contained in:
parent
2e410dd248
commit
4607dff2c3
3 changed files with 3 additions and 3 deletions
|
@ -125,7 +125,7 @@ type ConfDetails struct {
|
|||
// The height of the block in which the confirmed transaction was included
|
||||
// in.
|
||||
BlockHeight uint32 `protobuf:"varint,3,opt,name=block_height,json=blockHeight,proto3" json:"block_height,omitempty"`
|
||||
// The index of the confirmed transaction within the transaction.
|
||||
// The index of the confirmed transaction within the block.
|
||||
TxIndex uint32 `protobuf:"varint,4,opt,name=tx_index,json=txIndex,proto3" json:"tx_index,omitempty"`
|
||||
// The raw bytes of the block that mined the transaction. Only included if
|
||||
// include_block was set in the request.
|
||||
|
|
|
@ -91,7 +91,7 @@ message ConfDetails {
|
|||
// in.
|
||||
uint32 block_height = 3;
|
||||
|
||||
// The index of the confirmed transaction within the transaction.
|
||||
// The index of the confirmed transaction within the block.
|
||||
uint32 tx_index = 4;
|
||||
|
||||
/*
|
||||
|
|
|
@ -183,7 +183,7 @@
|
|||
"tx_index": {
|
||||
"type": "integer",
|
||||
"format": "int64",
|
||||
"description": "The index of the confirmed transaction within the transaction."
|
||||
"description": "The index of the confirmed transaction within the block."
|
||||
},
|
||||
"raw_block": {
|
||||
"type": "string",
|
||||
|
|
Loading…
Add table
Reference in a new issue