1
0
forked from GRIN/grim

build: update node and wallet to latest versions

This commit is contained in:
ardocrat
2026-06-04 18:06:32 +03:00
parent 3d1a721f29
commit b51a46b943
6 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -682,7 +682,7 @@ fn start_node_server() -> Result<Server, Error> {
// Start integrated node server.
let api_chan: &'static mut (oneshot::Sender<()>, oneshot::Receiver<()>) =
Box::leak(Box::new(oneshot::channel::<()>()));
let server_result = Server::new(server_config, None, api_chan);
let server_result = Server::new(server_config, None, None, api_chan);
server_result
}