fs: Make compatible with boost 1.78

This commit is contained in:
Andrew Chow
2022-01-19 15:21:25 -05:00
parent 869c6e23c5
commit dc5d6b0d47
3 changed files with 3 additions and 3 deletions

View File

@@ -141,7 +141,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)