mirror of
https://github.com/mempool/mempool.git
synced 2024-11-19 09:52:14 +01:00
fix tests
This commit is contained in:
parent
ffc2b6c53c
commit
3838d947b1
@ -128,8 +128,8 @@
|
|||||||
"AUDIT_START_HEIGHT": 774000,
|
"AUDIT_START_HEIGHT": 774000,
|
||||||
"SERVERS": []
|
"SERVERS": []
|
||||||
},
|
},
|
||||||
"MEMPOOl_SERVICES": {
|
"MEMPOOL_SERVICES": {
|
||||||
"API": "__MEMPOOL_SERVICES_API__",
|
"API": "",
|
||||||
"ACCELERATIONS": "__MEMPOOL_SERVICES_ACCELERATIONS__"
|
"ACCELERATIONS": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -15,7 +15,7 @@ describe('Rust GBT', () => {
|
|||||||
test('should produce the same template as getBlockTemplate from Bitcoin Core', async () => {
|
test('should produce the same template as getBlockTemplate from Bitcoin Core', async () => {
|
||||||
const rustGbt = new GbtGenerator();
|
const rustGbt = new GbtGenerator();
|
||||||
const { mempool, maxUid } = mempoolFromArrayBuffer(vectorBuffer.buffer);
|
const { mempool, maxUid } = mempoolFromArrayBuffer(vectorBuffer.buffer);
|
||||||
const result = await rustGbt.make(mempool, maxUid);
|
const result = await rustGbt.make(mempool, [], maxUid);
|
||||||
|
|
||||||
const blocks: [string, number][][] = result.blocks.map(block => {
|
const blocks: [string, number][][] = result.blocks.map(block => {
|
||||||
return block.map(uid => [vectorUidMap.get(uid) || 'missing', uid]);
|
return block.map(uid => [vectorUidMap.get(uid) || 'missing', uid]);
|
||||||
|
@ -137,8 +137,8 @@ __REPLICATION_AUDIT_START_HEIGHT__=${REPLICATION_AUDIT_START_HEIGHT:=774000}
|
|||||||
__REPLICATION_SERVERS__=${REPLICATION_SERVERS:=[]}
|
__REPLICATION_SERVERS__=${REPLICATION_SERVERS:=[]}
|
||||||
|
|
||||||
# MEMPOOL_SERVICES
|
# MEMPOOL_SERVICES
|
||||||
__MEMPOOL_SERVICES_API__==${MEMPOOL_SERVICES_API:=""}
|
__MEMPOOL_SERVICES_API__=${MEMPOOL_SERVICES_API:=""}
|
||||||
__MEMPOOL_SERVICES_ACCELERATIONS__==${MEMPOOL_SERVICES_ACCELERATIONS:=false}
|
__MEMPOOL_SERVICES_ACCELERATIONS__=${MEMPOOL_SERVICES_ACCELERATIONS:=false}
|
||||||
|
|
||||||
|
|
||||||
mkdir -p "${__MEMPOOL_CACHE_DIR__}"
|
mkdir -p "${__MEMPOOL_CACHE_DIR__}"
|
||||||
|
Loading…
Reference in New Issue
Block a user