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

Commit

Permalink
IOS-7423 Fix explorer link XLM XRP (#783)
Browse files Browse the repository at this point in the history
  • Loading branch information
skibinalexander authored Jul 29, 2024
1 parent b8e0e54 commit 8f34772
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 @@ -137,7 +137,7 @@ extension StellarWalletManager: TransactionSender {
let mapper = PendingTransactionRecordMapper()
let record = mapper.mapToPendingTransactionRecord(transaction: transaction, hash: hash)
self.wallet.addPendingTransaction(record)
return TransactionSendResult(hash: rawTransactionHash)
return TransactionSendResult(hash: hash)
}
.mapSendError(tx: rawTransactionHash)
.eraseToAnyPublisher() ?? .emptyFail
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 @@ -113,7 +113,7 @@ extension XRPWalletManager: TransactionSender {
let mapper = PendingTransactionRecordMapper()
let record = mapper.mapToPendingTransactionRecord(transaction: transaction, hash: hash)
self.wallet.addPendingTransaction(record)
return TransactionSendResult(hash: rawTransactionHash)
return TransactionSendResult(hash: hash)
}
.mapSendError(tx: rawTransactionHash)
.eraseToAnyPublisher() ?? .emptyFail
Expand Down

0 comments on commit 8f34772

Please sign in to comment.