Skip to content
This repository has been archived by the owner on Dec 16, 2021. It is now read-only.

chore: update according to merge of Drive and Machine #255

Merged
merged 28 commits into from
Apr 6, 2020
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
cca0740
refactor: use `DriveStateRepository` with new drive ABCI handlers
jawid-h Apr 1, 2020
e0f088b
fix: JSDoc
jawid-h Apr 1, 2020
590d3af
Merge branch 'v0.12-dev' into update-drive-endpoints
jawid-h Apr 2, 2020
f5861ab
chore: use Tendermint rpc host and port for Drive
jawid-h Apr 2, 2020
5641330
chore: remove config variables from .env
jawid-h Apr 2, 2020
29fb88e
fix: config validation
jawid-h Apr 2, 2020
ae18ab8
chore: update dependencies
jawid-h Apr 3, 2020
a2df479
fix: config repository
jawid-h Apr 3, 2020
9e0bd12
fix: test bootstrap
jawid-h Apr 3, 2020
8a6d4e0
fix: getIdentity integration test
jawid-h Apr 3, 2020
6e1d82a
fix: imports
jawid-h Apr 3, 2020
bd72514
chore: implement `getDocumentsHandlerFactory` test
jawid-h Apr 3, 2020
0828b21
fix: remove local dev options
jawid-h Apr 3, 2020
c3a0f30
chore: update `getIdentityHandlerFactory` test
jawid-h Apr 3, 2020
a0cf62b
Functional tests
Apr 3, 2020
37aebf8
Merge remote-tracking branch 'origin/update-drive-endpoints' into upd…
Apr 3, 2020
b110c99
Functional tests
Apr 3, 2020
7bc0c85
fix: remove unused `dpp`
jawid-h Apr 3, 2020
39375d9
fix: `handleAbciResponseError` unit test
jawid-h Apr 3, 2020
59b6831
tests: fix context name
shumkov Apr 4, 2020
8f7ab2f
chore: fix config mock
jawid-h Apr 6, 2020
e131c86
chore: update `DriveStateRepository` unit tests
jawid-h Apr 6, 2020
6bad759
Unit tests
Apr 6, 2020
6db393b
Merge remote-tracking branch 'origin/update-drive-endpoints' into upd…
Apr 6, 2020
dbb7372
fix: test descriptions
jawid-h Apr 6, 2020
cf6cd55
tests: fix transaction was not found test
shumkov Apr 6, 2020
99cbfd6
chore: update package lock
jawid-h Apr 6, 2020
e5e2d80
fix: check for a fee deduction in test assertion
jawid-h Apr 6, 2020
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
Prev Previous commit
Next Next commit
fix: JSDoc
  • Loading branch information
jawid-h committed Apr 1, 2020
commit e0f088bc98f510979187cac02e98bb023e9f78b5
2 changes: 1 addition & 1 deletion lib/externalApis/drive/DriveStateRepository.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class DriveStateRepository {
* @param {string} path
* @param {Object} data
*
* @return {Promise<*>}
* @return {Promise<Buffer>}
*/
async request(path, data = {}) {
const encodedData = cbor.encode(data);
Expand Down