| 2169 | } |
| 2170 | |
| 2171 | bool AppInitInterfaces(NodeContext &node) { |
| 2172 | node.chain = interfaces::MakeChain(node, Params()); |
| 2173 | // Create client interfaces for wallets that are supposed to be loaded |
| 2174 | // according to -wallet and -disablewallet options. This only constructs |
| 2175 | // the interfaces, it doesn't load wallet data. Wallets actually get loaded |
| 2176 | // when load() and start() interface methods are called below. |
| 2177 | g_wallet_init_interface.Construct(node); |
| 2178 | return true; |
| 2179 | } |
| 2180 | |
| 2181 | bool AppInitMain(Config &config, RPCServer &rpcServer, |
| 2182 | HTTPRPCRequestProcessor &httpRPCRequestProcessor, |
no test coverage detected