mirror of
https://github.com/bigchaindb/js-bigchaindb-driver.git
synced 2024-11-22 09:46:58 +01:00
remove votes endpoint
This commit is contained in:
parent
80bf01eb55
commit
2afbd3b398
@ -32,8 +32,7 @@ export default class Connection {
|
|||||||
'transactionsCommit': 'transactions?mode=commit',
|
'transactionsCommit': 'transactions?mode=commit',
|
||||||
'transactionsDetail': 'transactions/%(transactionId)s',
|
'transactionsDetail': 'transactions/%(transactionId)s',
|
||||||
'assets': 'assets',
|
'assets': 'assets',
|
||||||
'metadata': 'metadata',
|
'metadata': 'metadata'
|
||||||
'votes': 'votes'
|
|
||||||
}[endpoint]
|
}[endpoint]
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -108,17 +107,6 @@ export default class Connection {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param blockId
|
|
||||||
*/
|
|
||||||
listVotes(blockId) {
|
|
||||||
return this._req(this.getApiUrls('votes'), {
|
|
||||||
query: {
|
|
||||||
block_id: blockId
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param transaction
|
* @param transaction
|
||||||
*/
|
*/
|
||||||
|
@ -178,21 +178,6 @@ test('Get outputs for a public key and spent=true', t => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
test('Get votes for a block id', t => {
|
|
||||||
const expectedPath = 'path'
|
|
||||||
const blockId = 'abc'
|
|
||||||
|
|
||||||
conn._req = sinon.spy()
|
|
||||||
conn.getApiUrls = sinon.stub().returns(expectedPath)
|
|
||||||
|
|
||||||
conn.listVotes(blockId)
|
|
||||||
t.truthy(conn._req.calledWith(
|
|
||||||
expectedPath,
|
|
||||||
{ query: { block_id: blockId } }
|
|
||||||
))
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
test('Get asset for text', t => {
|
test('Get asset for text', t => {
|
||||||
const expectedPath = 'path'
|
const expectedPath = 'path'
|
||||||
const search = 'abc'
|
const search = 'abc'
|
||||||
|
Loading…
Reference in New Issue
Block a user