Commit Graph

5834 Commits

Author SHA1 Message Date
BtcContributor
2809e8d768
Add Account owner full name field to Uphold payment method 2021-05-17 11:24:07 +02:00
BtcContributor
7ee9eae4ae
Restore missing displayStrings strings in Settings 2021-05-09 20:56:51 +02:00
sqrrm
993f9b4e29
Merge pull request #5475 from BtcContributor/bsq_dust
Fix the formula used to calculate BSQ amount needed to avoid dust
2021-05-07 12:52:43 +02:00
Christoph Atteneder
eb9bce3033
Merge pull request #5451 from BtcContributor/fixstringmakingoffer
Fix string when creating a new offer
2021-05-07 11:52:17 +02:00
Christoph Atteneder
89729c41c9
Merge branch 'master' of github.com:bisq-network/bisq into release/v1.6.3
# Conflicts:
#	scripts/install_java.sh
2021-05-07 10:33:45 +02:00
BtcContributor
ff18e8afbe
Fix the amount required to avoid BSQ dust as the formula used was incorrect. 2021-05-07 10:21:44 +02:00
BtcContributor
270f7ba3cb
Fix string also for takers 2021-05-06 15:45:05 +02:00
BtcContributor
1f7c4fce05
Apply m52go suggestion
Co-authored-by: m52go <735155+m52go@users.noreply.github.com>
2021-05-06 13:55:57 +02:00
Christoph Atteneder
83d9fa0ee8
Merge pull request #5453 from devinbileck/change-mempool.bisq.services-onion
Change mempool.bisq.services onion address
2021-05-05 14:27:06 +02:00
Christoph Atteneder
35ede06037
Filter banned seednodes with wrong format 2021-05-05 11:21:53 +02:00
Devin Bileck
f5fd99f9ad
Change mempool.bisq.services onion address
In the process of migrating the server to a new instance, my secret key
for the onion address seems to have become corrupted. Therefore, I
needed to generate a new onion address.
2021-04-30 14:43:56 -07:00
BtcContributor
3047cd48d4
Fix missing verb in string when creating a new offer (again) 2021-04-30 11:24:21 +02:00
BtcContributor
943632fd7c
Fix missing verb in string when creating a new offer 2021-04-30 11:21:50 +02:00
Christoph Atteneder
3520d9b16d
Remove key logger warning because of new notarization support and specific entitlements 2021-04-28 16:21:38 +02:00
Christoph Atteneder
12f4e0fc13
Remove key logger warning because of new notarization support and specific entitlements 2021-04-28 16:15:55 +02:00
Christoph Atteneder
ed21e1ac36
Merge pull request #5442 from m52go/remove-docs-links
Switch docs links to wiki links in strings file
2021-04-28 15:59:52 +02:00
Christoph Atteneder
81b3c0ac6a
Merge pull request #5443 from m52go/other-docs-links
Switch remaining docs links in repository
2021-04-28 15:59:13 +02:00
chimp1984
e46669d9b1
Move null check up 2021-04-28 07:35:52 -05:00
chimp1984
68af436ef4
Add missing check if tx was in correct phase
There have been 1 tx in cycle 17 and 2 txs in cycle 23 which have been confirmed outside of the phase.
The vote result had excluded it correctly but for the hash calculation for the blind vote monitor the
phase check was missing which results in an incorrect hash.
By fixing that the past hashes back to cycle 17 are all invalid. Once all seed nodes are running that
patch nodes should be in sync again. As it did not affect consensus but only the monitoring it is not
critical.
2021-04-27 22:49:59 -05:00
m52go
6d9c53ed0c
Switch old docs links to wiki links 2021-04-27 16:29:14 -04:00
m52go
1550597f63
Switch remaining docs links to wiki links 2021-04-27 16:07:39 -04:00
Christoph Atteneder
c615d5dbf9
Merge pull request #5109 from stejbac/implement-segwit-for-bsq-wallet
Wallet changes for Segwit BSQ implementation
2021-04-27 20:58:51 +02:00
Steven Barclay
9760526aaa
Factor out shared segwit keychain setup to WalletsManager
Move consecutive maybeAddSegwitKeychain(..) calls for the BTC & BSQ
wallets from BisqSetup to WalletsManager, as the latter class is used
for operations which should be applied to both wallets and this moves
the logic closer to the wallet domain.

Also migrate a BSQ address validator in one of the test mock classes
from Base58AddressValidator to BitcoinAddressValidator (missed earlier).
2021-04-27 11:45:00 +01:00
Steven Barclay
5f1e32a226
Perform segwit BSQ wallet migration upon startup
Uncomment & enable the m/44'/142'/1' native segwit BSQ account path and
add code to migrate the user's BSQ wallet to segwit upon startup, along
the same lines as the existing BTC wallet segwit migration logic. That
is, set P2WPKH as the default output type, add a native segwit key chain
(set to active) to the BSQ wallet and back up the old 'bisq_BSQ.wallet'
file to 'pre_segwit_bisq_BSQ.wallet.backup'.

Also filter out legacy addresses coming from the original keychain from
BsqWalletService.get(Unused|Change)Address.
2021-04-27 11:26:13 +01:00
sqrrm
036d5fa977
Merge pull request #5439 from ripcurlx/release/v1.6.3
Update data stores for v1.6.3
2021-04-27 12:21:17 +02:00
Steven Barclay
3470429746
Allow use of bech32 BSQ addresses
Remove the restriction to base58 (P2SH & P2PKH) addresses when parsing,
formatting & validating BSQ addresses, by replacing o.b.c.LegacyAddress
with its superclass o.b.c.Address throughout. Also remove restriction to
LegacyAddress in BsqTxListItem and BsqTransfer(Service|Model).

The bech32 BSQ addresses follow the same format as the old base58 BSQ
addresses, namely 'B' + <btc-address>.
2021-04-27 11:08:10 +01:00
Steven Barclay
ce73fb85f3
Code cleanup: Simplify Optional stream processing
Use flatMap(Optional::stream) instead of filter(..isPresent).map(..get)
and avoid a redundantly nested Optional in OpReturnType.

Also replace some unnecessary stream().forEach(..) invocations on lists
in BtcWalletService, as forEach is already part of the List interface.
2021-04-27 10:39:30 +01:00
jmacxx
889ac863f6
v1.6.3 wording changes recommended by btc_contributor and pazza 2021-04-26 11:24:02 +02:00
Christoph Atteneder
69c7817340
Merge pull request #5438 from jmacxx/wording_changes_v163
v1.6.3 wording changes / clarification
2021-04-26 10:20:13 +02:00
jmacxx
94ebbc4ff3
v1.6.3 wording changes recommended by btc_contributor and pazza 2021-04-25 23:05:32 -05:00
Christoph Atteneder
0f9f43c9ba
Update bitcoinj checkpoints for v1.6.3 2021-04-22 11:38:11 +02:00
Christoph Atteneder
f6b244ec78
Update translations for v1.6.3 2021-04-22 10:42:58 +02:00
sqrrm
469448a218
Merge pull request #5431 from ripcurlx/upgrade-javafax-14
Upgrade Java to v11 and JavaFX to v15
2021-04-22 10:18:42 +02:00
Christoph Atteneder
de76bd051b
Merge pull request #5427 from jmacxx/fix_issue_5334
Show a SPV resync suggestion if trade remains unconfirmed for 3 hours or more
2021-04-22 09:21:21 +02:00
jmacxx
3c3dca0053
show a SPV msg if trade deposit remains unconfirmed for 3 hours or more 2021-04-21 20:00:01 -05:00
jmacxx
a5d5eafddf
@m52go edits and popup informing new feature 2021-04-21 15:54:16 -05:00
jmacxx
7f73df5dfd
Functionality to duplicate an offer 2021-04-20 16:22:49 -05:00
sqrrm
12a9fcc1e0
Merge pull request #5420 from ghubstan/01-update-txfee
Adjust to changing minimum tx fee rates
2021-04-20 11:51:09 +02:00
sqrrm
de8213a95d
Merge pull request #5412 from ghubstan/complete-api-bsqbtc-trade-support
Complete API support for BSQ/BTC trade pair
2021-04-20 11:47:13 +02:00
Christoph Atteneder
fbd7c9fbee
Merge pull request #5312 from BtcContributor/sendcustomfee
Add custom withdrawal transaction fee options on Send funds (BTC)
2021-04-20 09:26:30 +02:00
ghubstan
2308afb41b
Adjust to changing minimum tx fee rates
- Append minFeeServiceRate to TxFeeRateInfo proto.
- Display min rate in CLI console.
- Fix broken test due to changing min fee rate.
2021-04-19 12:08:52 -03:00
BtcContributor
d235316528
Restore manual fees for BSQ transactions in Settings 2021-04-19 16:58:00 +02:00
ghubstan
e96da16df8
Complete API support for BSQ/BTC trade pair
- Finished API server's verify bsq payment impl.
- Added verifybsqsenttoaddress method to CLI.
- Added verifybsqsenttoaddress-help.txt to server.
- Fixed client getoffers, getmyoffers to work with BSQ offers.
2021-04-15 14:21:25 -03:00
ghubstan
8ac30262c0
Add verifyBsqSentToAddress to GrpcWalletsService, CoreApi
The implemenation is already present in CoreWalletsService
2021-04-15 11:40:19 -03:00
Christoph Atteneder
64fe6c18a4
Merge pull request #5370 from jmacxx/mediation_follow_up_issues2
Disputes UI improvements
2021-04-13 11:16:38 +02:00
Christoph Atteneder
c951dc2288
Merge pull request #5234 from BtcContributor/hidebankid
Fix BankId leak
2021-04-13 10:57:51 +02:00
Christoph Atteneder
ca2731e779
Merge pull request #5388 from jmacxx/fix_seednode_persist
Fix shutdown persistence issue in Seednode
2021-04-13 09:33:36 +02:00
Devin Bileck
88299236f9
Merge branch 'master' of https://github.com/bisq-network/bisq into add-btc-node-wubwzaadboxwiffa 2021-04-12 17:42:35 -07:00
Christoph Atteneder
92a9cb654b
Merge pull request #5402 from maxim-belkin/wording-tweak
Tweak wording for takeOffer.fundsBox.isOfferAvailable
2021-04-12 16:29:10 +02:00
Christoph Atteneder
d8b42d7aac
Merge pull request #5399 from jmacxx/cashbymail_enhance_terms
CashByMail show terms and conditions upon taking an offer
2021-04-12 16:05:06 +02:00