Skip to content

Commit

Permalink
--address-share-rate 30 addition for the latest version of p2pool, in…
Browse files Browse the repository at this point in the history
…crement version.
  • Loading branch information
Zemrys committed Jan 9, 2018
1 parent 465315f commit e88a0a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Vertminer/Main.vb
Original file line number Diff line number Diff line change
Expand Up @@ -1096,9 +1096,9 @@ Public Class Main
End If
End If
If Not appdata.Contains("AppData") Then
p2pool_config = "ocm_p2pool.exe" & network & " --give-author " & p2pool_donation & " --fee " & p2pool_node_fee & " --address " & p2pool_fee_address & " --max-conns " & max_connections & " --worker-port " & mining_port & " --p2pool-port " & p2pool_port & " --bitcoind-config-path """ & appdata & "\vertcoin.conf""" & Environment.NewLine & "exit /B"
p2pool_config = "ocm_p2pool.exe" & network & " --give-author " & p2pool_donation & " --fee " & p2pool_node_fee & " --address " & p2pool_fee_address & " --max-conns " & max_connections & " --worker-port " & mining_port & " --p2pool-port " & p2pool_port & " --bitcoind-config-path """ & appdata & "\vertcoin.conf""" & " --address-share-rate 30" & Environment.NewLine & "exit /B"
Else
p2pool_config = "ocm_p2pool.exe" & network & " --give-author " & p2pool_donation & " --fee " & p2pool_node_fee & " --address " & p2pool_fee_address & " --max-conns " & max_connections & " --worker-port " & mining_port & " --p2pool-port " & p2pool_port & Environment.NewLine & "exit /B"
p2pool_config = "ocm_p2pool.exe" & network & " --give-author " & p2pool_donation & " --fee " & p2pool_node_fee & " --address " & p2pool_fee_address & " --max-conns " & max_connections & " --worker-port " & mining_port & " --p2pool-port " & p2pool_port & " --address-share-rate 30" & Environment.NewLine & "exit /B"
End If
If System.IO.File.Exists(p2pool_config_file) = True Then
command = File.ReadAllText(p2pool_config_file)
Expand Down
4 changes: 2 additions & 2 deletions Vertminer/My Project/AssemblyInfo.vb
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' by using the '*' as shown below:
' <Assembly: AssemblyVersion("1.0.*")>

<Assembly: AssemblyVersion("1.1.7.7")>
<Assembly: AssemblyFileVersion("1.1.7.7")>
<Assembly: AssemblyVersion("1.1.7.8")>
<Assembly: AssemblyFileVersion("1.1.7.8")>

0 comments on commit e88a0a8

Please sign in to comment.