@aztec/test-wallet 0.0.1-commit.f1df4d2 → 0.0.1-commit.f2ce05ee
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dest/wallet/test_wallet.js +1 -1
- package/package.json +10 -10
- package/src/wallet/test_wallet.ts +1 -1
|
@@ -184,7 +184,7 @@ import { ProvenTx } from '../utils.js';
|
|
|
184
184
|
return this.pxe.debug.getNotes(filter);
|
|
185
185
|
}
|
|
186
186
|
/** Returns the block header up to which the wallet has synced. */ getSyncedBlockHeader() {
|
|
187
|
-
return this.pxe.
|
|
187
|
+
return this.pxe.getSyncedBlockHeader();
|
|
188
188
|
}
|
|
189
189
|
/**
|
|
190
190
|
* Triggers a sync of the wallet with the node to update the latest block header.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aztec/test-wallet",
|
|
3
3
|
"homepage": "https://github.com/AztecProtocol/aztec-packages/tree/master/yarn-project/test-wallet",
|
|
4
|
-
"version": "0.0.1-commit.
|
|
4
|
+
"version": "0.0.1-commit.f2ce05ee",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
"./client/bundle": "./dest/bundle.js",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"typedocOptions": {
|
|
12
12
|
"entryPoints": [
|
|
13
|
-
"./src/
|
|
13
|
+
"./src/server.ts"
|
|
14
14
|
],
|
|
15
15
|
"tsconfig": "./tsconfig.json"
|
|
16
16
|
},
|
|
@@ -62,14 +62,14 @@
|
|
|
62
62
|
]
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@aztec/accounts": "0.0.1-commit.
|
|
66
|
-
"@aztec/aztec.js": "0.0.1-commit.
|
|
67
|
-
"@aztec/entrypoints": "0.0.1-commit.
|
|
68
|
-
"@aztec/foundation": "0.0.1-commit.
|
|
69
|
-
"@aztec/noir-contracts.js": "0.0.1-commit.
|
|
70
|
-
"@aztec/pxe": "0.0.1-commit.
|
|
71
|
-
"@aztec/stdlib": "0.0.1-commit.
|
|
72
|
-
"@aztec/wallet-sdk": "0.0.1-commit.
|
|
65
|
+
"@aztec/accounts": "0.0.1-commit.f2ce05ee",
|
|
66
|
+
"@aztec/aztec.js": "0.0.1-commit.f2ce05ee",
|
|
67
|
+
"@aztec/entrypoints": "0.0.1-commit.f2ce05ee",
|
|
68
|
+
"@aztec/foundation": "0.0.1-commit.f2ce05ee",
|
|
69
|
+
"@aztec/noir-contracts.js": "0.0.1-commit.f2ce05ee",
|
|
70
|
+
"@aztec/pxe": "0.0.1-commit.f2ce05ee",
|
|
71
|
+
"@aztec/stdlib": "0.0.1-commit.f2ce05ee",
|
|
72
|
+
"@aztec/wallet-sdk": "0.0.1-commit.f2ce05ee"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@jest/globals": "^30.0.0",
|
|
@@ -284,7 +284,7 @@ export abstract class BaseTestWallet extends BaseWallet {
|
|
|
284
284
|
|
|
285
285
|
/** Returns the block header up to which the wallet has synced. */
|
|
286
286
|
getSyncedBlockHeader(): Promise<BlockHeader> {
|
|
287
|
-
return this.pxe.
|
|
287
|
+
return this.pxe.getSyncedBlockHeader();
|
|
288
288
|
}
|
|
289
289
|
|
|
290
290
|
/**
|