docs: fix memory option for examples

This commit is contained in:
Braydon Fuller 2019-05-31 12:21:50 -07:00
parent 87aaebc8e7
commit b7252939ec
No known key found for this signature in database
GPG Key ID: F24F232D108B3AD4
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ const network = bcoin.Network.get('regtest');
const node = new bcoin.FullNode({
network: 'regtest',
db: 'memory'
memory: true
});
node.use(plugin);

View File

@ -10,7 +10,7 @@ function dummy() {
const walletdb = new bcoin.wallet.WalletDB({
network: 'testnet',
db: 'memory'
memory: true
});
(async () => {