From c170cfb902a0b9c328ebc83105668b49d14f8310 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Fri, 22 Nov 2019 17:38:24 +1100 Subject: [PATCH] Fix compile error in beacon node tests --- beacon_node/tests/test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_node/tests/test.rs b/beacon_node/tests/test.rs index 39a0fd091b..d1e66674cc 100644 --- a/beacon_node/tests/test.rs +++ b/beacon_node/tests/test.rs @@ -22,7 +22,7 @@ fn http_server_genesis_state() { let (api_state, _root) = env .runtime() - .block_on(remote_node.http.beacon().state_by_slot(Slot::new(0))) + .block_on(remote_node.http.beacon().get_state_by_slot(Slot::new(0))) .expect("should fetch state from http api"); let mut db_state = node