mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-06-25 07:10:48 -04:00
Fix wrong order of method calls causing display of wrong dispute time
This commit is contained in:
parent
9d9ce5918b
commit
ecac98728a
1 changed files with 1 additions and 1 deletions
|
@ -128,13 +128,13 @@ public abstract class TradeStepDetailsView extends AnchorPane {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
setDateFromBlocks(model.getBestChainHeight());
|
||||||
|
|
||||||
// first call updateTradePeriodState as there is the dispute button created in case we are in period over time
|
// first call updateTradePeriodState as there is the dispute button created in case we are in period over time
|
||||||
updateTradePeriodState(trade.getTradePeriodState());
|
updateTradePeriodState(trade.getTradePeriodState());
|
||||||
updateDisputeState(trade.getDisputeState());
|
updateDisputeState(trade.getDisputeState());
|
||||||
|
|
||||||
model.addBlockChainListener(blockChainListener);
|
model.addBlockChainListener(blockChainListener);
|
||||||
setDateFromBlocks(model.getBestChainHeight());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void doDeactivate() {
|
public void doDeactivate() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue