diff options
author | John Newbery <john@johnnewbery.com> | 2019-04-02 17:11:26 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2019-04-09 17:53:08 -0400 |
commit | 9eaeb7fb8d4ab0d4493849e6c17e314fd75fea9c (patch) | |
tree | dfb23b946a85eecd6a59529bac0590f6de346a00 /build_msvc/libbitcoin_server | |
parent | 91a25d1e711bfc0617027eee18b9777ff368d6b9 (diff) |
[build] Move wallet load functions to wallet/load unit
Moves the following wallet load functions to a new wallet/load unit in
the libbitcoin_wallet library. All other functions in wallet/init remain
in libbitcoin_server:
- `VerifyWallets`
- `LoadWallets`
- `StartWallets`
- `FlushWallets`
- `StopWallets`
- `UnloadWallets`
Diffstat (limited to 'build_msvc/libbitcoin_server')
-rw-r--r-- | build_msvc/libbitcoin_server/libbitcoin_server.vcxproj.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/build_msvc/libbitcoin_server/libbitcoin_server.vcxproj.in b/build_msvc/libbitcoin_server/libbitcoin_server.vcxproj.in index 48a117bcfe..0b4aa1e407 100644 --- a/build_msvc/libbitcoin_server/libbitcoin_server.vcxproj.in +++ b/build_msvc/libbitcoin_server/libbitcoin_server.vcxproj.in @@ -151,6 +151,9 @@ </ItemDefinitionGroup> <ItemGroup> @SOURCE_FILES@ + <ClCompile Include="..\..\src\wallet\init.cpp"> + <ObjectFileName>$(IntDir)wallet_init.obj</ObjectFileName> + </ClCompile> </ItemGroup> <ItemGroup> <None Include="packages.config" /> |