Merge pull request #3376 from patricklodder/1.21-fwd-boost-compat

Fix boost compatibility until 1.82
This commit is contained in:
chromatic 2023-12-04 17:42:21 -08:00 committed by GitHub
commit db03c7e077
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -560,6 +560,7 @@ libbitcoin_util_a_SOURCES = \
$(BITCOIN_CORE_H)
if USE_LIBEVENT
libbitcoin_util_a_CPPFLAGS += $(EVENT_CFLAGS)
libbitcoin_util_a_SOURCES += util/url.cpp
endif

View File

@ -138,7 +138,7 @@ class MultiWalletTest(BitcoinTestFramework):
# should raise rpc error if wallet path can't be created
err_code = -4 if self.options.descriptors else -1
assert_raises_rpc_error(err_code, "boost::filesystem::create_directory:", self.nodes[0].createwallet, "w8/bad")
assert_raises_rpc_error(err_code, "boost::filesystem::create_director", self.nodes[0].createwallet, "w8/bad")
# check that all requested wallets were created
self.stop_node(0)