mirror of
https://github.com/bigchaindb/js-bigchaindb-driver.git
synced 2024-11-22 17:50:09 +01:00
use required parameter names, disable camelcase rule for them
This commit is contained in:
parent
b12b845306
commit
fd15b0821c
@ -41,12 +41,12 @@ export default class Connection {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @public
|
* @public
|
||||||
* @param txId
|
* @param tx_id
|
||||||
*/
|
*/
|
||||||
getStatus(txId) {
|
getStatus(tx_id) { // eslint-disable-line camelcase
|
||||||
return this._req(this.getApiUrls('statuses'), {
|
return this._req(this.getApiUrls('statuses'), {
|
||||||
query: {
|
query: {
|
||||||
txId
|
tx_id
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@ -65,13 +65,13 @@ export default class Connection {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @public
|
* @public
|
||||||
* @param txId
|
* @param tx_id
|
||||||
* @param status
|
* @param status
|
||||||
*/
|
*/
|
||||||
listBlocks({ txId, status }) {
|
listBlocks({ tx_id, status }) {
|
||||||
return this._req(this.getApiUrls('blocks'), {
|
return this._req(this.getApiUrls('blocks'), {
|
||||||
query: {
|
query: {
|
||||||
txId,
|
tx_id,
|
||||||
status
|
status
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@ -108,12 +108,12 @@ export default class Connection {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @public
|
* @public
|
||||||
* @param blockId
|
* @param block_id
|
||||||
*/
|
*/
|
||||||
listVotes(blockId) {
|
listVotes(block_id) { // eslint-disable-line camelcase
|
||||||
return this._req(this.getApiUrls('votes'), {
|
return this._req(this.getApiUrls('votes'), {
|
||||||
query: {
|
query: {
|
||||||
blockId
|
block_id
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user