mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Reduce security deposit to make testing cheaper on IRC accountmodel
This commit is contained in:
parent
cbcab9e5aa
commit
ee310fc4ae
2 changed files with 5 additions and 1 deletions
|
@ -197,7 +197,7 @@ class IrcAccountModel extends UIModel {
|
|||
Arbitrator.ID_TYPE.REAL_LIFE_ID,
|
||||
languages,
|
||||
new Reputation(),
|
||||
Coin.parseCoin("0.1"),
|
||||
Coin.parseCoin("0.001"),
|
||||
arbitrationMethods,
|
||||
idVerifications,
|
||||
"http://bitsquare.io/",
|
||||
|
|
|
@ -221,6 +221,10 @@ class BootstrappedPeerFactory {
|
|||
@Override
|
||||
public void operationComplete(BaseFuture future) throws Exception {
|
||||
if (future.isSuccess()) {
|
||||
|
||||
// We are well connected so we can offer our capabilities as relay node for other peers
|
||||
new PeerBuilderNAT(peer).start();
|
||||
|
||||
if (useManualPortForwarding) {
|
||||
setState(BootstrapState.MANUAL_PORT_FORWARDING_SUCCESS,
|
||||
"We use manual port forwarding and are visible to other peers.");
|
||||
|
|
Loading…
Add table
Reference in a new issue