Skip to content

Commit

Permalink
Create new methods to handle btc tx deserialization without inputs to…
Browse files Browse the repository at this point in the history
… avoid passing boolean
  • Loading branch information
julia-zack committed Sep 18, 2024
1 parent e686bab commit b252b88
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ public Optional<BtcTransaction> getSvpFundTxSigned() {
}

svpFundTxSigned = safeGetFromRepository(SVP_FUND_TX_SIGNED,
data -> BridgeSerializationUtils.deserializeBtcTransaction(data, networkParameters));
data -> BridgeSerializationUtils.deserializeSvpFundTx(data, networkParameters));
return Optional.ofNullable(svpFundTxSigned);
}

Expand Down

0 comments on commit b252b88

Please sign in to comment.