Skip to content

Commit

Permalink
Merge pull request #151 from filecoin-project/fix/glif-node-token-env…
Browse files Browse the repository at this point in the history
…-var

remove mut
  • Loading branch information
clriesco authored Mar 12, 2024
2 parents da315b0 + f4a6dfe commit 385b0ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fplus-lib/src/external_services/filecoin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pub async fn state_get_state(actor_address: &str) -> Result<StateReadStateRespon
"id": 1
});

let mut request = client.post(&node_url).json(&body);
let request = client.post(&node_url).json(&body);

let response = request.send().await?.json::<StateReadStateResponse>().await?;
Ok(response)
Expand Down

0 comments on commit 385b0ac

Please sign in to comment.