Skip to content

Commit

Permalink
refactor: remove 0x from ripple transaction id and make it uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
aya015757881 committed Jul 8, 2024
1 parent 9ef0a96 commit 44f69cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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 anychain-ripple/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "anychain-ripple"
description = "A Rust library for interacting with the Ripple blockchain. It provides core functionalities such as transaction signing and serialization, address generation, and network communication."
version = "0.1.8"
version = "0.1.9"
keywords = ["ripple", "blockchain", "cryptocurrencies", "wallet", "transactions"]

# Workspace inherited keys
Expand Down
2 changes: 1 addition & 1 deletion anychain-ripple/src/transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ impl TransactionId for RippleTransactionId {}

impl fmt::Display for RippleTransactionId {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "0x{}", hex::encode(&self.txid))
write!(f, "{}", hex::encode(&self.txid).to_uppercase())
}
}

Expand Down

0 comments on commit 44f69cc

Please sign in to comment.