Make updateDepositTxFromWallet public

This commit is contained in:
chimp1984 2021-10-19 22:43:23 +02:00
parent 0e23cbe24e
commit c0cca781de
No known key found for this signature in database
GPG key ID: 9801B4EC591F90E3

View file

@ -649,7 +649,7 @@ public abstract class Trade implements Tradable, Model {
///////////////////////////////////////////////////////////////////////////////////////////
// The deserialized tx has not actual confidence data, so we need to get the fresh one from the wallet.
void updateDepositTxFromWallet() {
public void updateDepositTxFromWallet() {
if (getDepositTx() != null)
applyDepositTx(processModel.getTradeWalletService().getWalletTx(getDepositTx().getTxId()));
}