forked from Qortal/qortal
Removed getWalletTransactions() synchronization. Again, can be re-added later.
This commit is contained in:
parent
9804eccbf0
commit
70c864bc2f
@ -342,7 +342,6 @@ public abstract class Bitcoiny implements ForeignBlockchain {
|
||||
}
|
||||
|
||||
public List<SimpleTransaction> getWalletTransactions(String key58) throws ForeignBlockchainException {
|
||||
synchronized (this) {
|
||||
Context.propagate(bitcoinjContext);
|
||||
|
||||
Wallet wallet = walletFromDeterministicKey58(key58);
|
||||
@ -409,7 +408,6 @@ public abstract class Bitcoiny implements ForeignBlockchain {
|
||||
.map(t -> convertToSimpleTransaction(t, keySet))
|
||||
.sorted(newestTimestampFirstComparator).collect(Collectors.toList());
|
||||
}
|
||||
}
|
||||
|
||||
protected SimpleTransaction convertToSimpleTransaction(BitcoinyTransaction t, Set<String> keySet) {
|
||||
long amount = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user