-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Description
Hello,
Finally loadwallet and unloadwallet dynamically available 👍
Thank you so much for that.
I am trying to build daemon from below git branch version.
https://github.com/litecoin-project/litecoin/tree/0.17
All the wallet access and things I am doing using RPC. To manage multiple nodes for bunch of wallets is bit costly as its not allowing to load more thn X number of wallets.
Issue :
I am not able to load wallet more than ~240(may b depends on system or db limit,Please correct me if I am wrong).
How can I increase the size of the DB or limit so I can load multiple wallet more compare to current limit.
Or is there any way where I can load multiple wallet more compare to currently its loading(say ~240) ?
Daemon getting stopped after ~240 wallets.
What I've tried so far ?
I've added below things by creating DB_CONFIG file in datadirectory (Linux : /home/USER/.litecoin
)
set_lk_max_lockers 400000
set_lg_regionmax 1048576
Reference link of above : https://bitcoin.stackexchange.com/a/70737
Result : same issue
If anyone face this type of issue please share or guide on this.
Before trying official litecoin 0.17 branch I've tried with source available on @thrasher- repo's 0.17 branch. And today I've tried with official branch too. But still its giving same issue for me.
It would be great if anyone from litecoin community or outside the community can share details or way to solve this issue.
Thanks,