Skip to content

Commit

Permalink
Merge pull request #54 from originalworks/fix-shadowing-ow_data_provi…
Browse files Browse the repository at this point in the history
…der_cli

Fix shadowing in ow_data_provider_cli
  • Loading branch information
cezary-stroczynski authored Oct 1, 2024
2 parents 5d3135b + 986bebd commit 1abc133
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ow_data_provider_cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,10 @@ pub async fn run(config: Config) -> Result<(), Box<dyn Error>> {
.wallet(wallet)
.on_http(config.rpc_url.parse().unwrap());

let ddex_sequencer = DdexSequencerContext::build(&provider).await?;
let ddex_sequencer_context = DdexSequencerContext::build(&provider).await?;
let blob_transaction_data = BlobTransactionData::build(&config).unwrap();
ddex_sequencer.send_blob(blob_transaction_data).await?;
ddex_sequencer_context
.send_blob(blob_transaction_data)
.await?;
Ok(())
}

0 comments on commit 1abc133

Please sign in to comment.