Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Nov 29, 2024
1 parent 413c854 commit bbe7c9e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions integration_tests/configs/default.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@
'broadcast-mode': 'sync',
},
config: {
db_backend: 'goleveldb',
db_backend: 'pebbledb',
},
'app-config': {
'app-db-backend': 'goleveldb',
'app-db-backend': 'pebbledb',
},
}, {
coins: '1000000000000000000stake,10000000000000000000000basetcro',
Expand All @@ -73,10 +73,10 @@
'broadcast-mode': 'sync',
},
config: {
db_backend: 'pebbledb',
db_backend: 'goleveldb',
},
'app-config': {
'app-db-backend': 'pebbledb',
'app-db-backend': 'goleveldb',
},
}],
accounts: [{
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/test_mempool.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def test_mempool(cronos_mempool):
print(f"all send tx hash: {sended_hash_set} at {block_num_0}")

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

block_num_1 = w3.eth.get_block_number()
print(f"block_num_1 {block_num_1}")
Expand Down

0 comments on commit bbe7c9e

Please sign in to comment.