Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Commit

Permalink
IOS-7423 IOS-7432 Fix transaction hash for explorer link (#780)
Browse files Browse the repository at this point in the history
  • Loading branch information
skibinalexander authored Jul 23, 2024
1 parent 51eef71 commit 21644d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ extension StellarWalletManager: TransactionSender {
guard let self = self else { throw WalletError.empty }

let mapper = PendingTransactionRecordMapper()
let record = mapper.mapToPendingTransactionRecord(transaction: transaction, hash: rawTransactionHash)
let record = mapper.mapToPendingTransactionRecord(transaction: transaction, hash: hash)
self.wallet.addPendingTransaction(record)
return TransactionSendResult(hash: rawTransactionHash)
}
Expand Down
2 changes: 1 addition & 1 deletion BlockchainSdk/Blockchains/XRP/XRPWalletManager.swift
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ extension XRPWalletManager: TransactionSender {
guard let self = self else { throw WalletError.empty }

let mapper = PendingTransactionRecordMapper()
let record = mapper.mapToPendingTransactionRecord(transaction: transaction, hash: rawTransactionHash)
let record = mapper.mapToPendingTransactionRecord(transaction: transaction, hash: hash)
self.wallet.addPendingTransaction(record)
return TransactionSendResult(hash: rawTransactionHash)
}
Expand Down

0 comments on commit 21644d7

Please sign in to comment.