From 838c58b489cb7f57758d3681a97b61674c681700 Mon Sep 17 00:00:00 2001 From: Russel Waters Date: Fri, 2 Mar 2018 13:17:25 -0500 Subject: [PATCH] Fix test for wallet_create_max to allow for utx database addition (#691) --- rai/core_test/wallets.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rai/core_test/wallets.cpp b/rai/core_test/wallets.cpp index 8f08492b..f8ede908 100644 --- a/rai/core_test/wallets.cpp +++ b/rai/core_test/wallets.cpp @@ -76,7 +76,7 @@ TEST (wallets, wallet_create_max) rai::system system (24000, 1); bool error (false); rai::wallets wallets (error, *system.nodes[0]); - const int nonWalletDbs = 16; + const int nonWalletDbs = 17; for (int i = 0; i < system.nodes[0]->config.lmdb_max_dbs - nonWalletDbs; i++) { rai::keypair key;