Rename get_raw_history tp get_raw_states

This commit is contained in:
binarybaron 2023-09-08 12:53:33 +02:00
parent 2ec465aec7
commit f367c2ba49

View file

@ -51,7 +51,7 @@ pub fn register_modules(context: Arc<Context>) -> RpcModule<Arc<Context>> {
.unwrap();
module
.register_async_method("get_raw_history", |params, context| async move {
.register_async_method("get_raw_states", |params, context| async move {
execute_request(params, Method::GetRawStates, &context).await
})
.unwrap();