Skip to content

Commit b30f90e

Browse files
committedJul 25, 2017
3.5.9.7b-Mandatory
Gridcoin Research 3.5.9.7b/MSI=43.1 Mandatory Upgrade for Windows Users - Neural Network business logic rule fix inability to stake current superblock
1 parent ea4d067 commit b30f90e

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed
 

‎contrib/Installer/boinc/boinc/modPersistedDataSystem.vb

+12-4
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ Module modPersistedDataSystem
194194
End If
195195

196196
lTotal = lTotal + Val("0" + Trim(cpid.Magnitude))
197-
lRows = lRows + 1
197+
lRows = lRows + 1
198198
sOut += sRow
199199
dMagAge = 0
200200

@@ -205,6 +205,7 @@ Module modPersistedDataSystem
205205
sOut += sRow
206206
End If
207207
Next
208+
sOut += "00000000000,275000;" 'This is a placeholder to be removed in Neural Network 2.0
208209
sOut += "</MAGNITUDES><QUOTES>"
209210

210211
surrogateRow.Database = "Prices"
@@ -415,10 +416,16 @@ Module modPersistedDataSystem
415416
Dim sQuorumData As String = ExtractXML(msSyncData, "<QUORUMDATA>")
416417
Dim dAge As Double = Val(ExtractXML(sQuorumData, "<AGE>"))
417418
Log("EnsureTeamIsSynchronized: " + Trim(dAge))
419+
420+
If KeyValue("NEURAL_07252017") = "" Then
421+
UpdateKey("NEURAL_07252017", "CLEARING") 'Start Fresh on July 25 2017, then once every 6 hours we clear. Take this out when we move to NN2.
422+
ClearProjectData()
423+
End If
424+
418425
Dim dWindow As Double = 60 * 60 '1 hour before and 1 hour after superblock expires:
419426
If dAge > (86400 - dWindow) And dAge < (86400 + dWindow) Then
420427
Dim lAgeOfMaster = GetUnixFileAge(GetGridFolder() + "NeuralNetwork\db.dat")
421-
If lAgeOfMaster > SYNC_THRESHOLD Then
428+
If lAgeOfMaster > (SYNC_THRESHOLD / 4) Then
422429
'Clear out this nodes project data, so the node can sync with the team at the same exact time:
423430
Log("Clearing project data so we can synchronize as a team.")
424431
ClearProjectData()
@@ -435,11 +442,12 @@ Module modPersistedDataSystem
435442
End Sub
436443
Private Sub ClearProjectData()
437444
Dim sPath As String = GetGridFolder() + "NeuralNetwork\"
438-
439445
SoftKill(sPath + "db.dat")
440446
'Erase the projects
441447
SoftKill(sPath + "*master.dat")
442-
SoftKill(sPath + "*team.xml")
448+
SoftKill(sPath + "*.xml")
449+
SoftKill(sPath + "*.gz")
450+
SoftKill(sPath + "*.dat")
443451
End Sub
444452
Private Sub ClearWhitelistData()
445453
Dim sPath As String = GetGridFolder() + "NeuralNetwork\Whitelist\"

0 commit comments

Comments
 (0)
Please sign in to comment.