mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Merge pull request #2478 from oscarguindzberg/bitcoinj-0.14.7
Use bitcoinj 0.14.7
This commit is contained in:
commit
76e753f35a
@ -33,7 +33,7 @@ configure(subprojects) {
|
||||
jmockitVersion = '1.42'
|
||||
joptVersion = '5.0.3'
|
||||
langVersion = '3.4'
|
||||
bitcoinjVersion = 'cd30ad5b'
|
||||
bitcoinjVersion = '3e7ff3a'
|
||||
logbackVersion = '1.1.10'
|
||||
lombokVersion = '1.18.2'
|
||||
mockitoVersion = '2.21.0'
|
||||
@ -132,8 +132,13 @@ configure([project(':desktop'),
|
||||
configure(project(':assets')) {
|
||||
dependencies {
|
||||
compile("com.github.bisq-network.bitcoinj:bitcoinj-core:$bitcoinjVersion") {
|
||||
exclude(module: 'jsr305')
|
||||
exclude(module: 'slf4j-api')
|
||||
exclude(module: 'guava')
|
||||
exclude(module: 'protobuf-java')
|
||||
}
|
||||
compile 'com.google.guava:guava:20.0'
|
||||
compile "org.slf4j:slf4j-api:$slf4jVersion"
|
||||
compile "commons-codec:commons-codec:$codecVersion"
|
||||
compile "org.apache.commons:commons-lang3:$langVersion"
|
||||
compile "org.bouncycastle:bcpg-jdk15on:$bcVersion"
|
||||
|
@ -584,6 +584,7 @@ public abstract class WalletService {
|
||||
}
|
||||
|
||||
public List<Transaction> getRecentTransactions(int numTransactions, boolean includeDead) {
|
||||
// Returns a list ordered by tx.getUpdateTime() desc
|
||||
return wallet.getRecentTransactions(numTransactions, includeDead);
|
||||
}
|
||||
|
||||
|
@ -749,7 +749,8 @@ public abstract class Trade implements Tradable, Model {
|
||||
if (depositTx != null && getTakeOfferDate() != null) {
|
||||
if (depositTx.getConfidence().getDepthInBlocks() > 0) {
|
||||
final long tradeTime = getTakeOfferDate().getTime();
|
||||
long blockTime = depositTx.getUpdateTime().getTime();
|
||||
// Use tx.getIncludedInBestChainAt() when available, otherwise use tx.getUpdateTime()
|
||||
long blockTime = depositTx.getIncludedInBestChainAt() != null ? depositTx.getIncludedInBestChainAt().getTime() : depositTx.getUpdateTime().getTime();
|
||||
// If block date is in future (Date in Bitcoin blocks can be off by +/- 2 hours) we use our current date.
|
||||
// If block date is earlier than our trade date we use our trade date.
|
||||
if (blockTime > now)
|
||||
|
@ -265,7 +265,8 @@ public class BsqTxView extends ActivatableView<GridPane, Void> implements BsqBal
|
||||
bsqWalletService,
|
||||
btcWalletService,
|
||||
daoFacade,
|
||||
transaction.getUpdateTime(),
|
||||
// Use tx.getIncludedInBestChainAt() when available, otherwise use tx.getUpdateTime()
|
||||
transaction.getIncludedInBestChainAt() != null ? transaction.getIncludedInBestChainAt() : transaction.getUpdateTime(),
|
||||
bsqFormatter);
|
||||
})
|
||||
.collect(Collectors.toList());
|
||||
|
@ -221,8 +221,8 @@ class TransactionsListItem {
|
||||
else if (details.isEmpty())
|
||||
details = Res.get("funds.tx.txFeePaymentForBsqTx");
|
||||
}
|
||||
|
||||
date = transaction.getUpdateTime();
|
||||
// Use tx.getIncludedInBestChainAt() when available, otherwise use tx.getUpdateTime()
|
||||
date = transaction.getIncludedInBestChainAt() != null ? transaction.getIncludedInBestChainAt() : transaction.getUpdateTime();
|
||||
dateString = formatter.formatDateTime(date);
|
||||
}
|
||||
|
||||
|
@ -37,7 +37,7 @@ dependencyVerification {
|
||||
'com.googlecode.json-simple:json-simple:4e69696892b88b41c55d49ab2fdcc21eead92bf54acc588c0050596c3b75199c',
|
||||
'org.springframework:spring-core:c451e8417adb2ffb2445636da5e44a2f59307c4100037a1fe387c3fba4f29b52',
|
||||
'ch.qos.logback:logback-classic:e66efc674e94837344bc5b748ff510c37a44eeff86cbfdbf9e714ef2eb374013',
|
||||
'com.github.bisq-network.bitcoinj:bitcoinj-core:d148d9577cf96540f7f5367011f7626ff9c9f148f0bf903b541740d480652969',
|
||||
'com.github.bisq-network.bitcoinj:bitcoinj-core:15b2ac7e7a3af442f9d734d05a872586e7cd70c451c1bbaaf152830fc3421ec8',
|
||||
'org.slf4j:slf4j-api:3a4cd4969015f3beb4b5b4d81dbafc01765fb60b8a439955ca64d8476fef553e',
|
||||
'ch.qos.logback:logback-core:4cd46fa17d77057b39160058df2f21ebbc2aded51d0edcc25d2c1cecc042a005',
|
||||
'com.google.code.findbugs:jsr305:766ad2a0783f2687962c8ad74ceecc38a28b9f72a2d085ee438b7813e928d0c7',
|
||||
|
Loading…
Reference in New Issue
Block a user