Skip to content

Commit

Permalink
added log
Browse files Browse the repository at this point in the history
  • Loading branch information
dferendo committed Apr 5, 2024
1 parent f6af264 commit ed3ddf3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/src/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ abigen!(
);

#[allow(non_snake_case)]
#[derive(Serialize, Deserialize)]
#[derive(Serialize, Deserialize, Debug)]
/// Data to be sent to the Succinct X API with an offchain request.
struct OffchainInput {
/// The chain id of the network to be used.
Expand Down Expand Up @@ -303,6 +303,7 @@ impl SuccinctClient {
functionId: function_id,
input,
};
println!("HERE: {:?}", data);

// Serialize the data to JSON.
let serialized_data = serde_json::to_string(&data).unwrap();
Expand Down

0 comments on commit ed3ddf3

Please sign in to comment.