Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex6323 committed Jun 22, 2023
1 parent eb6759c commit cc53644
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion sdk/examples/how_tos/native_tokens/burn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ async fn main() -> Result<()> {
.retry_transaction_until_included(&transaction.transaction_id, None, None)
.await?;
println!(
"Block included: {}/block/{}",
"Transaction included: {}/block/{}",
std::env::var("EXPLORER_URL").unwrap(),
block_id
);
Expand Down
2 changes: 1 addition & 1 deletion sdk/examples/how_tos/native_tokens/decrease_supply.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ async fn main() -> Result<()> {
.await?;

println!(
"Block included: {}/block/{}",
"Transaction included: {}/block/{}",
std::env::var("EXPLORER_URL").unwrap(),
block_id
);
Expand Down
2 changes: 1 addition & 1 deletion sdk/examples/how_tos/native_tokens/destroy_foundry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async fn main() -> Result<()> {
.retry_transaction_until_included(&transaction.transaction_id, None, None)
.await?;
println!(
"Block included: {}/block/{}",
"Transaction included: {}/block/{}",
std::env::var("EXPLORER_URL").unwrap(),
block_id
);
Expand Down
2 changes: 1 addition & 1 deletion sdk/examples/how_tos/native_tokens/increase_supply.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async fn main() -> Result<()> {
.retry_transaction_until_included(&transaction.transaction.transaction_id, None, None)
.await?;
println!(
"Block included: {}/block/{}",
"Transaction included: {}/block/{}",
std::env::var("EXPLORER_URL").unwrap(),
block_id
);
Expand Down
4 changes: 2 additions & 2 deletions sdk/examples/how_tos/native_tokens/mint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ async fn main() -> Result<()> {
.retry_transaction_until_included(&transaction.transaction_id, None, None)
.await?;
println!(
"Block included: {}/block/{}",
"Transaction included: {}/block/{}",
std::env::var("EXPLORER_URL").unwrap(),
block_id
);
Expand All @@ -76,7 +76,7 @@ async fn main() -> Result<()> {
.retry_transaction_until_included(&transaction.transaction.transaction_id, None, None)
.await?;
println!(
"Block included: {}/block/{}",
"Transaction included: {}/block/{}",
std::env::var("EXPLORER_URL").unwrap(),
block_id
);
Expand Down
2 changes: 1 addition & 1 deletion sdk/examples/how_tos/native_tokens/send.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ async fn main() -> Result<()> {
.retry_transaction_until_included(&transaction.transaction_id, None, None)
.await?;
println!(
"Block included: {}/block/{}",
"Transaction included: {}/block/{}",
std::env::var("EXPLORER_URL").unwrap(),
block_id
);
Expand Down

0 comments on commit cc53644

Please sign in to comment.