From 8e7ccecd9ee2851cdfcbc3a6d728a16beab9d7cf Mon Sep 17 00:00:00 2001 From: Maximilian Hubert <64627729+gap-editor@users.noreply.github.com> Date: Thu, 29 May 2025 22:34:21 +0200 Subject: [PATCH] fix typo --- src/rpc/methods/eth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpc/methods/eth.rs b/src/rpc/methods/eth.rs index 7cff8202bde..3f3434a2029 100644 --- a/src/rpc/methods/eth.rs +++ b/src/rpc/methods/eth.rs @@ -3058,7 +3058,7 @@ impl RpcMethod<1> for EthGetFilterChanges { const API_PATHS: BitFlags = ApiPaths::all(); const PERMISSION: Permission = Permission::Write; const DESCRIPTION: Option<&'static str> = - Some("Returns event logs which occured since the last poll"); + Some("Returns event logs which occurred since the last poll"); type Params = (FilterID,); type Ok = EthFilterResult;