Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Fix typo (#11698)
Browse files Browse the repository at this point in the history
  • Loading branch information
vorot93 committed May 11, 2020
1 parent 7875b78 commit 938f361
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parity/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ fn execute_impl<Cr, Rr>(
let mut private_state = None;

if cmd.private_tx_enabled {
warn!("Private transactions support is deprecated and may be removed in a future release. e. Please see #11695 for details:\nhttps://github.com/openethereum/openethereum/issues/11695");
warn!("Private transactions support is deprecated and may be removed in a future release. Please see #11695 for details:\nhttps://github.com/openethereum/openethereum/issues/11695");
private_tx_sync = Some(private_tx_service.clone() as Arc<dyn PrivateTxHandler>);
private_state = Some(private_tx_provider.private_state_db());
}
Expand Down Expand Up @@ -704,7 +704,7 @@ fn execute_impl<Cr, Rr>(

// the updater service
if update_policy.filter != UpdateFilter::None {
warn!("Updater is deprecated and may be removed in a future release. e. Please see #11696 for details:\nhttps://github.com/openethereum/openethereum/issues/11696");
warn!("Updater is deprecated and may be removed in a future release. Please see #11696 for details:\nhttps://github.com/openethereum/openethereum/issues/11696");
}

let updater = Updater::new(
Expand Down

0 comments on commit 938f361

Please sign in to comment.