Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updates to allow null passwords for Bitcoin and Litecoin services
  • Loading branch information
OperatorOverload committed Apr 17, 2014
commit d8f408cd8c002492390c554ad6f659c45fc76244
2 changes: 1 addition & 1 deletion CoinWrapper/Services/Coins/Bitcoin/BitcoinService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public BitcoinService(Boolean useTestnet = false) : base(useTestnet)
{
}

public BitcoinService(String daemonUrl, String rpcUsername, String rpcPassword, String walletPassword) : base(daemonUrl, rpcUsername, rpcPassword, walletPassword)
public BitcoinService(String daemonUrl, String rpcUsername, String rpcPassword, String walletPassword=null) : base(daemonUrl, rpcUsername, rpcPassword, walletPassword)
{
}

Expand Down
2 changes: 1 addition & 1 deletion CoinWrapper/Services/Coins/Litecoin/LitecoinService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public LitecoinService(Boolean useTestnet = false) : base(useTestnet)
{
}

public LitecoinService(String daemonUrl, String rpcUsername, String rpcPassword, String walletPassword) : base(daemonUrl, rpcUsername, rpcPassword, walletPassword)
public LitecoinService(String daemonUrl, String rpcUsername, String rpcPassword, String walletPassword=null) : base(daemonUrl, rpcUsername, rpcPassword, walletPassword)
{
}

Expand Down