Skip to content

Commit 3f86279

Browse files
committed
fix
1 parent 413c854 commit 3f86279

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

integration_tests/configs/default.jsonnet

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@
6060
'broadcast-mode': 'sync',
6161
},
6262
config: {
63-
db_backend: 'goleveldb',
63+
db_backend: 'pebbledb',
6464
},
6565
'app-config': {
66-
'app-db-backend': 'goleveldb',
66+
'app-db-backend': 'pebbledb',
6767
},
6868
}, {
6969
coins: '1000000000000000000stake,10000000000000000000000basetcro',
@@ -73,10 +73,10 @@
7373
'broadcast-mode': 'sync',
7474
},
7575
config: {
76-
db_backend: 'pebbledb',
76+
db_backend: 'goleveldb',
7777
},
7878
'app-config': {
79-
'app-db-backend': 'pebbledb',
79+
'app-db-backend': 'goleveldb',
8080
},
8181
}],
8282
accounts: [{

integration_tests/test_mempool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def test_mempool(cronos_mempool):
6161
print(f"all send tx hash: {sended_hash_set} at {block_num_0}")
6262

6363
all_pending = w3.eth.get_filter_changes(filter.filter_id)
64-
assert len(all_pending) == 4
64+
assert len(all_pending) == len(KEYS.items() - 1)
6565

6666
block_num_1 = w3.eth.get_block_number()
6767
print(f"block_num_1 {block_num_1}")

0 commit comments

Comments
 (0)