I’ve built the bitcoin core on my computer and once I tried to run tests related to wallet, I encountered this error:
[[email protected] bitcoin]$ python test/functional/wallet_createwallet.py 2022-06-20T16:36:53.675000Z TestFramework (WARNING): Test Skipped: wallet has not been compiled. 2022-06-20T16:36:53.725000Z TestFramework (INFO): Stopping nodes 2022-06-20T16:36:53.725000Z TestFramework (INFO): Cleaning up /tmp/bitcoin_func_test_mnwvrnya on exit 2022-06-20T16:36:53.726000Z TestFramework (INFO): Test skipped
When I tried to reconfigure the compilation process by ./configure
I noticed it doesn’t compile wallet:
Options used to compile and link: external signer = yes multiprocess = no with experimental syscall sandbox support = yes with libs = yes with wallet = no
But I don’t know how to change this option to compile with wallet. I took look at ./configure
options but see that it is enabled by default:
[[email protected] bitcoin]$ ./configure --help ... --disable-wallet disable wallet (enabled by default) ...