Skip to content

Commit f390d4f

Browse files
committed
v1.1.5
1 parent 363ab57 commit f390d4f

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

client/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bsv/wallet-toolbox-client",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"description": "Client only Wallet Storage",
55
"main": "./out/src/index.client.js",
66
"types": "./out/src/index.client.d.ts",

src/Setup.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,30 +114,30 @@ export abstract class Setup extends SetupClient {
114114
}
115115

116116
/**
117-
*
117+
*
118118
*/
119119
export interface SetupWalletKnexArgs extends SetupWalletArgs {
120120
knex: Knex<any, any[]>
121121
databaseName: string
122122
}
123123

124124
/**
125-
*
125+
*
126126
*/
127127
export interface SetupWalletMySQLArgs extends SetupWalletArgs {
128128
databaseName: string
129129
}
130130

131131
/**
132-
*
132+
*
133133
*/
134134
export interface SetupWalletSQLiteArgs extends SetupWalletArgs {
135135
filePath: string
136136
databaseName: string
137137
}
138138

139139
/**
140-
*
140+
*
141141
*/
142142
export interface SetupWalletKnex extends SetupWallet {
143143
activeStorage: StorageKnex

src/SetupClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ export abstract class SetupClient {
324324
}
325325

326326
/**
327-
*
327+
*
328328
*/
329329
export type KeyPairAddress = {
330330
privateKey: PrivateKey
@@ -333,7 +333,7 @@ export type KeyPairAddress = {
333333
}
334334

335335
/**
336-
*
336+
*
337337
*/
338338
export interface SetupEnv {
339339
chain: sdk.Chain

test/wallet/list/listOutputs.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -261,11 +261,11 @@ describe('listOutputs test', () => {
261261
test('6_non-existent basket', async () => {
262262
for (const { wallet } of ctxs) {
263263
// non-existent basket should return zero results.
264-
const args: ListOutputsArgs = {
265-
basket: 'admin foo'
266-
}
267-
const r = await wallet.listOutputs(args)
268-
expect(r.totalOutputs === 0)
264+
const args: ListOutputsArgs = {
265+
basket: 'admin foo'
266+
}
267+
const r = await wallet.listOutputs(args)
268+
expect(r.totalOutputs === 0)
269269
}
270270
})
271271

0 commit comments

Comments
 (0)