mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 02:25:40 +01:00
Merge #8834: [qa] blockstore: Switch to dumb dbm
fa9cd25
[qa] blockstore: Switch to dumb dbm (MarcoFalke)
This commit is contained in:
commit
c9d7b0de2f
@ -9,11 +9,11 @@
|
||||
|
||||
from .mininode import *
|
||||
from io import BytesIO
|
||||
import dbm.ndbm
|
||||
import dbm.dumb as dbmd
|
||||
|
||||
class BlockStore(object):
|
||||
def __init__(self, datadir):
|
||||
self.blockDB = dbm.ndbm.open(datadir + "/blocks", 'c')
|
||||
self.blockDB = dbmd.open(datadir + "/blocks", 'c')
|
||||
self.currentBlock = 0
|
||||
self.headers_map = dict()
|
||||
|
||||
@ -123,7 +123,7 @@ class BlockStore(object):
|
||||
|
||||
class TxStore(object):
|
||||
def __init__(self, datadir):
|
||||
self.txDB = dbm.ndbm.open(datadir + "/transactions", 'c')
|
||||
self.txDB = dbmd.open(datadir + "/transactions", 'c')
|
||||
|
||||
def close(self):
|
||||
self.txDB.close()
|
||||
|
Loading…
Reference in New Issue
Block a user