Skip to content

Commit

Permalink
version 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
scx1332 committed May 11, 2024
1 parent 07f5a39 commit 39fa87d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ path = "src/main.rs"
name = "erc20_processor"
description = "Payment processor for ERC20 tokens"
authors = ["Sieciech Czajka <[email protected]>"]
version = "0.4.1"
version = "0.4.3"
edition = "2021"
license = "MIT"

Expand Down
3 changes: 3 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,9 @@ async fn main_internal() -> Result<(), PaymentError> {
for key in res.1.iter().enumerate() {
println!("# ETH_ADDRESS_{}: {:#x}", key.0, key.1);
}
for key in res.0.iter().enumerate() {
println!("# ETH_PRIVATE_KEY_{}: {}", key.0, key.1);
}
println!("ETH_PRIVATE_KEYS={}", res.0.join(","));
}
PaymentCommands::Transfer {
Expand Down

0 comments on commit 39fa87d

Please sign in to comment.