ecash-agora 2.6.5 → 2.6.7
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/README.md +8 -0
- package/package.json +3 -3
- package/tests/partial.locktime.test.ts +1 -1
package/README.md
CHANGED
|
@@ -247,3 +247,11 @@ Running from `bitcoin-abc/modules/ecash-agora` if your build dir is `bitcoin-abc
|
|
|
247
247
|
### 2.6.5
|
|
248
248
|
|
|
249
249
|
- Publish to catch updated `ecash-wallet` dep [D18925](https://reviews.bitcoinabc.org/D18925)
|
|
250
|
+
|
|
251
|
+
### 2.6.6
|
|
252
|
+
|
|
253
|
+
- Publish to catch updated `chronik-client` dep [D18976](https://reviews.bitcoinabc.org/D18976)
|
|
254
|
+
|
|
255
|
+
### 2.6.7
|
|
256
|
+
|
|
257
|
+
- Publish to catch updated `chronik-client` and `ecash-wallet` deps [D18995](https://reviews.bitcoinabc.org/D18995)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ecash-agora",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.7",
|
|
4
4
|
"description": "Library for interacting with the eCash Agora protocol",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"typescript": "^5.4.3"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"chronik-client": "3.
|
|
46
|
+
"chronik-client": "3.6.1",
|
|
47
47
|
"ecash-lib": "4.5.2",
|
|
48
|
-
"ecash-wallet": "2.3.
|
|
48
|
+
"ecash-wallet": "2.3.5"
|
|
49
49
|
}
|
|
50
50
|
}
|
|
@@ -193,7 +193,7 @@ describe('AgoraPartial enforcedLockTime', () => {
|
|
|
193
193
|
});
|
|
194
194
|
await assert.isRejected(
|
|
195
195
|
chronik.broadcastTx(failedAcceptTx.ser(), true),
|
|
196
|
-
|
|
196
|
+
/Failed getting \/broadcast-tx: 400: Broadcast failed: Transaction rejected by mempool: mandatory-script-verify-flag-failed \(Script failed an OP_EQUALVERIFY operation\)/,
|
|
197
197
|
);
|
|
198
198
|
|
|
199
199
|
// This example shows that it's important to choose different locktimes
|