You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gridcoin Research 3.5.8.9/MSI=42.3
Leisure Upgrade
- Make client readvertise beacon using existing keypair after 5 months
- Implement voting functionality for Linux and OSX (@skcin).
- Windows are now resizable
- Replace Windows voting dialog with the new dialog
- Update Gridcoin icon on Windows
- Update Hungarian translations (@matthew11), Update Portuguese
translations (Miguel Veiga).
- Update icon set by @Peppernrino, Update icon on OSX, #193 (@coagmano)
- Reduced memory usage by around 100MB+. Optimize released resources.
- Improve UI when used with dark themes on Linux, #222 (@skcin)
- Fix occasional crashes when starting on Linux, #139
- Fix freeze when clicking on the "Amount" field under Send Coins when
using KDE, #210.
- Fix OSX build issues, #174 (@coagmano)
- Change splash screen
- Add manpages (Caraka), Add Travis, Various spelling corrections
// Ensure they can re-send the beacon if > 6 months old : GetBeaconPublicKey returns an empty string when > 6 months: OK.
1360
+
// Ensure they can re-send the beacon if > 5 months old : GetBeaconPublicKey returns an empty string when > 5 months: OK.
1361
+
// Note that we allow the client to re-advertise the beacon in 5 months, so that they have a seamless and uninterrupted keypair in use (prevents a hacker from hijacking a keypair that is in use)
1360
1362
sError = "ALREADY_IN_CHAIN";
1361
1363
return bFromService ? true : false;
1362
1364
}
@@ -1939,7 +1941,7 @@ Value execute(const Array& params, bool fHelp)
//3-26-2017 - Ensure beacon public key is within 6 months of network age
3837
-
int64_t iMaxSeconds = 60 * 24 * 30 * 6 * 60;
3838
+
//3-26-2017 - Ensure beacon public key is within 6 months of network age (If advertising, let it be returned as missing after 5 months, to ensure the public key is renewed seamlessly).
0 commit comments