diff --git a/examples/examples/event_error_details.rs b/examples/examples/event_error_details.rs index e32181c14..32ee2cc59 100644 --- a/examples/examples/event_error_details.rs +++ b/examples/examples/event_error_details.rs @@ -51,7 +51,7 @@ async fn main() { let alice = AccountKeyring::Alice.to_account_id(); let balance_of_alice = api.get_account_data(&alice).unwrap().unwrap().free; - println!("[+] Alice's Free Balance is is {}\n", balance_of_alice); + println!("[+] Alice's Free Balance is {}\n", balance_of_alice); let bob = AccountKeyring::Bob.to_account_id(); let balance_of_bob = api.get_account_data(&bob).unwrap().unwrap_or_default().free; diff --git a/examples/examples/transfer_with_tungstenite_client.rs b/examples/examples/transfer_with_tungstenite_client.rs index 706511a17..cca1a8a12 100755 --- a/examples/examples/transfer_with_tungstenite_client.rs +++ b/examples/examples/transfer_with_tungstenite_client.rs @@ -49,7 +49,7 @@ fn main() { .unwrap(); let bob_balance = api.get_account_data(&bob.into()).unwrap().unwrap_or_default().free; - println!("[+] Bob's Free Balance is is {}\n", bob_balance); + println!("[+] Bob's Free Balance is {}\n", bob_balance); // Generate extrinsic. let xt = api.balance_transfer_allow_death(MultiAddress::Id(bob.into()), 1000000000000); diff --git a/examples/examples/transfer_with_ws_client.rs b/examples/examples/transfer_with_ws_client.rs index f2a291b97..68ce20947 100755 --- a/examples/examples/transfer_with_ws_client.rs +++ b/examples/examples/transfer_with_ws_client.rs @@ -48,7 +48,7 @@ fn main() { let bob = sr25519::Public::from_ss58check("5FHneW46xGXgs5mUiveU4sbTyGBzmstUspZC92UhjJM694ty") .unwrap(); let bob_balance = api.get_account_data(&bob.into()).unwrap().unwrap_or_default().free; - println!("[+] Bob's Free Balance is is {}\n", bob_balance); + println!("[+] Bob's Free Balance is {}\n", bob_balance); // Generate extrinsic. let xt = api.balance_transfer_allow_death(MultiAddress::Id(bob.into()), 1000000000000);