don't use MaResult as default in newStandardSwitch (#578)

This commit is contained in:
Dmitriy Ryajov 2021-05-24 16:48:18 -06:00 committed by GitHub
parent 24132d7129
commit 34787728a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 15 deletions

View File

@ -184,8 +184,9 @@ proc build*(b: SwitchBuilder): Switch
return switch return switch
proc newStandardSwitch*(privKey = none(PrivateKey), proc newStandardSwitch*(
address = MultiAddress.init("/ip4/127.0.0.1/tcp/0"), privKey = none(PrivateKey),
address = MultiAddress.init("/ip4/127.0.0.1/tcp/0").tryGet(),
secureManagers: openarray[SecureProtocol] = [ secureManagers: openarray[SecureProtocol] = [
SecureProtocol.Noise, SecureProtocol.Noise,
], ],
@ -203,7 +204,7 @@ proc newStandardSwitch*(privKey = none(PrivateKey),
var b = SwitchBuilder var b = SwitchBuilder
.new() .new()
.withAddress(address.expect("Should have been initialized with default")) .withAddress(address)
.withRng(rng) .withRng(rng)
.withMaxConnections(maxConnections) .withMaxConnections(maxConnections)
.withMaxIn(maxIn) .withMaxIn(maxIn)