From 0e7bd1fbf3e96386cfaf5de9763d6918cf583ce6 Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Fri, 26 May 2023 17:00:39 -0700 Subject: [PATCH] add missing anyhow::Context --- web3_proxy/src/frontend/authorization.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/web3_proxy/src/frontend/authorization.rs b/web3_proxy/src/frontend/authorization.rs index 29d2779b..2f9ae0ee 100644 --- a/web3_proxy/src/frontend/authorization.rs +++ b/web3_proxy/src/frontend/authorization.rs @@ -7,6 +7,7 @@ use crate::jsonrpc::{JsonRpcForwardedResponse, JsonRpcRequest}; use crate::rpcs::one::Web3Rpc; use crate::stats::{AppStat, BackendRequests, RpcQueryStats}; use crate::user_token::UserBearerToken; +use anyhow::Context; use axum::headers::authorization::Bearer; use axum::headers::{Header, Origin, Referer, UserAgent}; use chrono::Utc;