Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ra0x3 committed Jan 26, 2024
1 parent 70c5bee commit 199d41b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions examples/greetings/greetings-data/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use clap::Parser;
use fuel_indexer_tests::{defaults, fixtures::call_params};
use fuel_indexer_tests::defaults;
use fuels::accounts::wallet::WalletUnlocked;
use fuels::macros::abigen;
use fuels::{
prelude::{Bech32ContractId, Contract, LoadConfiguration, Provider},
prelude::{Bech32ContractId, CallParameters, Contract, LoadConfiguration, Provider},
types::SizedAsciiString,
};
use rand::{seq::SliceRandom, Rng};
Expand Down Expand Up @@ -115,8 +115,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
let _ = contract
.methods()
.new_greeting(id, greeting, name)
.call_params(tx_params())
.unwrap()
.call_params(CallParameters::default())
.unwrap()
.call()
.await
Expand Down

0 comments on commit 199d41b

Please sign in to comment.