Skip to content

Commit

Permalink
v2.0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xenonflux committed Mar 24, 2018
1 parent 3c4289c commit f078701
Show file tree
Hide file tree
Showing 45 changed files with 203 additions and 185 deletions.
4 changes: 2 additions & 2 deletions 1337-qt.pro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TEMPLATE = app
TARGET = 1337-qt
VERSION = 1.9.0.1
TARGET = Elite-qt
VERSION = 2.0.0.0
INCLUDEPATH += src src/json src/qt
DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE
CONFIG += no_include_pwd
Expand Down
23 changes: 15 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
1337 Current Version
Elite Current Version
===========================
Version: 1.9.0.0
Version: 2.0.0.0

IF YOU'RE RUNNING A WALLET OF A LOWER VERSION YOU NEED TO UPDATE A.S.A.P.


1337 Development Tree
Elite Development Tree
===========================
1337 is a PoS-based cryptocurrency focused on providing services to the gaming community.
Elite is a PoS-based cryptocurrency focused on providing services to the gaming community.



1337 Development Process
Elite Development Process
===========================
Developers work in their own trees, then submit pull requests when
they think their feature or bug fix is ready.
Expand All @@ -23,13 +22,21 @@ or are controversial.

The master branch is regularly built and tested, but is not guaranteed
to be completely stable. Tags are regularly created to indicate new
stable release versions of 1337.
stable release versions of Elite.

Feature branches are created when there are major new features being
worked on by several people.


Donate To Support Development
=================================
1337: LeetDevFpGxwdbqcmQbNZAikqqRPBRRZP8
BTC: 17tuXyRsDEBQrZT99JGsubb6N8sh547XvX
ETH: 0x01E363B7aC2E78EFFa597B0D9eBC50775468C720
LTC: LXjtkT4ukNqhrRQHufah3aQLqjuJpbZctT
PayPal: 1337foundationsite@gmail.com


License
===========================
1337 Core is released under the terms of the MIT license. See http://opensource.org/licenses/MIT for more information.
Elite Core is released under the terms of the MIT license. See http://opensource.org/licenses/MIT for more information.
36 changes: 18 additions & 18 deletions share/setup.nsi
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Name NovaCoin
Name Elite

RequestExecutionLevel highest
SetCompressor /SOLID lzma

# General Symbol Definitions
!define REGKEY "SOFTWARE\$(^Name)"
!define VERSION 0.3.0
!define COMPANY "NovaCoin project"
!define URL http://www.novacoin.ru/
!define VERSION 2.0.0
!define COMPANY "Elite Foundation"
!define URL https://www.elitecurrency.net

# MUI Symbol Definitions
!define MUI_ICON "../share/pixmaps/novacoin.ico"
Expand All @@ -19,8 +19,8 @@ SetCompressor /SOLID lzma
!define MUI_STARTMENUPAGE_REGISTRY_ROOT HKLM
!define MUI_STARTMENUPAGE_REGISTRY_KEY ${REGKEY}
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME StartMenuGroup
!define MUI_STARTMENUPAGE_DEFAULTFOLDER NovaCoin
#!define MUI_FINISHPAGE_RUN $INSTDIR\novacoin-qt.exe
!define MUI_STARTMENUPAGE_DEFAULTFOLDER Elite
#!define MUI_FINISHPAGE_RUN $INSTDIR\Elite-qt.exe
!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico"
!define MUI_UNWELCOMEFINISHPAGE_BITMAP "../share/pixmaps/nsis-wizard.bmp"
!define MUI_UNFINISHPAGE_NOAUTOCLOSE
Expand All @@ -45,14 +45,14 @@ Var StartMenuGroup
!insertmacro MUI_LANGUAGE English

# Installer attributes
OutFile novacoin-0.3.0-win32-setup.exe
InstallDir $PROGRAMFILES\NovaCoin
OutFile Elite-${VERSION}-win32-setup.exe
InstallDir $PROGRAMFILES\Elite
CRCCheck on
XPStyle on
BrandingText " "
ShowInstDetails show
VIProductVersion 0.3.0.0
VIAddVersionKey ProductName NovaCoin
VIProductVersion 2.0.0.0
VIAddVersionKey ProductName Elite
VIAddVersionKey ProductVersion "${VERSION}"
VIAddVersionKey CompanyName "${COMPANY}"
VIAddVersionKey CompanyWebsite "${URL}"
Expand All @@ -66,18 +66,18 @@ ShowUninstDetails show
Section -Main SEC0000
SetOutPath $INSTDIR
SetOverwrite on
#File ../release/novacoin-qt.exe
#File ../release/Elite-qt.exe
File /oname=license.txt ../COPYING
File /oname=readme.txt ../doc/README_windows.txt
SetOutPath $INSTDIR\daemon
File ../src/novacoind.exe
File ../src/1337coind.exe
SetOutPath $INSTDIR\src
File /r /x *.exe /x *.o ../src\*.*
SetOutPath $INSTDIR
WriteRegStr HKCU "${REGKEY}\Components" Main 1

# Remove old wxwidgets-based-bitcoin executable and locales:
#Delete /REBOOTOK $INSTDIR\novacoin.exe
#Delete /REBOOTOK $INSTDIR\1337.exe
#RMDir /r /REBOOTOK $INSTDIR\locale
SectionEnd

Expand All @@ -87,7 +87,7 @@ Section -post SEC0001
WriteUninstaller $INSTDIR\uninstall.exe
!insertmacro MUI_STARTMENU_WRITE_BEGIN Application
CreateDirectory $SMPROGRAMS\$StartMenuGroup
CreateShortcut "$SMPROGRAMS\$StartMenuGroup\Uninstall NovaCoin.lnk" $INSTDIR\uninstall.exe
CreateShortcut "$SMPROGRAMS\$StartMenuGroup\Uninstall 1337.lnk" $INSTDIR\uninstall.exe
!insertmacro MUI_STARTMENU_WRITE_END
WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" DisplayName "$(^Name)"
WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" DisplayVersion "${VERSION}"
Expand Down Expand Up @@ -120,7 +120,7 @@ done${UNSECTION_ID}:

# Uninstaller sections
Section /o -un.Main UNSEC0000
#Delete /REBOOTOK $INSTDIR\novacoin-qt.exe
#Delete /REBOOTOK $INSTDIR\1337-qt.exe
Delete /REBOOTOK $INSTDIR\license.txt
Delete /REBOOTOK $INSTDIR\readme.txt
RMDir /r /REBOOTOK $INSTDIR\daemon
Expand All @@ -130,7 +130,7 @@ SectionEnd

Section -un.post UNSEC0001
DeleteRegKey HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)"
Delete /REBOOTOK "$SMPROGRAMS\$StartMenuGroup\Uninstall NovaCoin.lnk"
Delete /REBOOTOK "$SMPROGRAMS\$StartMenuGroup\Uninstall 1337.lnk"
#Delete /REBOOTOK "$SMPROGRAMS\$StartMenuGroup\Bitcoin.lnk"
#Delete /REBOOTOK "$SMSTARTUP\Bitcoin.lnk"
Delete /REBOOTOK $INSTDIR\uninstall.exe
Expand All @@ -140,7 +140,7 @@ Section -un.post UNSEC0001
DeleteRegValue HKCU "${REGKEY}" Path
DeleteRegKey /IfEmpty HKCU "${REGKEY}\Components"
DeleteRegKey /IfEmpty HKCU "${REGKEY}"
DeleteRegKey HKCR "novacoin"
DeleteRegKey HKCR "${Name}"
RmDir /REBOOTOK $SMPROGRAMS\$StartMenuGroup
RmDir /REBOOTOK $INSTDIR
Push $R0
Expand All @@ -160,4 +160,4 @@ Function un.onInit
ReadRegStr $INSTDIR HKCU "${REGKEY}" Path
!insertmacro MUI_STARTMENU_GETFOLDER Application $StartMenuGroup
!insertmacro SELECT_UNSECTION Main ${UNSEC0000}
FunctionEnd
FunctionEnd
36 changes: 19 additions & 17 deletions src/checkpoints.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,25 @@ namespace Checkpoints
boost::assign::map_list_of
( 0, hashGenesisBlock )
(10, uint256("0x0000071f29755f306abba9547217ef13b25d7fd29a453e705ef142faf6f7dd35"))
(100, uint256("0x0000000f151409a7ba469d3835eaee5dbf1b2d4fb515c6532724cdf80c2a0da3"))
(1000, uint256("0x09dfbbd8682436db7bf0f3e63fa93893bf0c3ae593a6ac666336737ee13e55f8"))
(10000, uint256("0x00000000030222fb0ea1c58a13cecede543c57cdaae4811894d4b79ca5e8eef2"))
(20000, uint256("0x09f992413e47c39c32c90ba6ff3bd5419137a98a526721ead6cf97f09bafc819"))
(50000, uint256("0x2c28d0f4b70f40560c94bd157c2fccd82db1406f05e66e4dac814d5945ded03c"))
(337902, uint256("0xcb0566fb790fa24e41d91d73f0a30f1094b41fe11fb9d240e5c952f5c895cd39"))
(598476, uint256("0x1f28ebec18ff614e7304a58fa4acd742dde5a4fb5eb64985e1a22cb8dac0d542"))
(598477, uint256("0xeda318e8ee919d3fb2cc38504fc1065ee371f5a6152af93dd022fb1b3bd2c3b5"))
(707039, uint256("0xe3d990c569b00cc4d60e1fb278c4f43991b14c90c9e28f6863c07dbca1c31524"))
(750000, uint256("0x329d41c9a4e8438ef5303667060872fc4a7e232ceeac5fcb53fce85e9a469e7d"))
(766370, uint256("0x8f709711dfa67e56b797595ecdb5b036789f77be7abac0610ba59176d522ac5c"))
(800000, uint256("0x24d9d97c7caaf666ef3fa26cfab2be0a9b5183ebb8377482090ece7c3a49e61f"))
(850000, uint256("0xbdd82968ad30705f5fe29f6ad5e0706d5878d765f74418a46fc1e7c200e5dee6"))
(900000, uint256("0x93ada7180d3a073d95ff7e421b257935caa2fbdc28bee10654f82a9b26765891"))
(905233, uint256("0x1eda1df57629aca56f984e934d2e9c9d9c8b816e288b1eed3b8473e99bc26ca9"))
(1005000, uint256("0x6db6044a7066c38fe81025174cc1dc5023eafd2bc0588e94b73d0481b5666ceb"))
(1049288, uint256("0xee9e34441ee6a338f060a6685e348dca9594359e477bdaca03c7e131683fcadc"))
(100, uint256("0x0000000f151409a7ba469d3835eaee5dbf1b2d4fb515c6532724cdf80c2a0da3"))
(1000, uint256("0x09dfbbd8682436db7bf0f3e63fa93893bf0c3ae593a6ac666336737ee13e55f8"))
(10000, uint256("0x00000000030222fb0ea1c58a13cecede543c57cdaae4811894d4b79ca5e8eef2"))
(20000, uint256("0x09f992413e47c39c32c90ba6ff3bd5419137a98a526721ead6cf97f09bafc819"))
(50000, uint256("0x2c28d0f4b70f40560c94bd157c2fccd82db1406f05e66e4dac814d5945ded03c"))
(337902, uint256("0xcb0566fb790fa24e41d91d73f0a30f1094b41fe11fb9d240e5c952f5c895cd39"))
(598476, uint256("0x1f28ebec18ff614e7304a58fa4acd742dde5a4fb5eb64985e1a22cb8dac0d542"))
(598477, uint256("0xeda318e8ee919d3fb2cc38504fc1065ee371f5a6152af93dd022fb1b3bd2c3b5"))
(707039, uint256("0xe3d990c569b00cc4d60e1fb278c4f43991b14c90c9e28f6863c07dbca1c31524"))
(750000, uint256("0x329d41c9a4e8438ef5303667060872fc4a7e232ceeac5fcb53fce85e9a469e7d"))
(766370, uint256("0x8f709711dfa67e56b797595ecdb5b036789f77be7abac0610ba59176d522ac5c"))
(800000, uint256("0x24d9d97c7caaf666ef3fa26cfab2be0a9b5183ebb8377482090ece7c3a49e61f"))
(850000, uint256("0xbdd82968ad30705f5fe29f6ad5e0706d5878d765f74418a46fc1e7c200e5dee6"))
(900000, uint256("0x93ada7180d3a073d95ff7e421b257935caa2fbdc28bee10654f82a9b26765891"))
(905233, uint256("0x1eda1df57629aca56f984e934d2e9c9d9c8b816e288b1eed3b8473e99bc26ca9"))
(1005000, uint256("0x6db6044a7066c38fe81025174cc1dc5023eafd2bc0588e94b73d0481b5666ceb"))
(1049288, uint256("0xee9e34441ee6a338f060a6685e348dca9594359e477bdaca03c7e131683fcadc"))
(1149997, uint256("0xf623e6c803005f2e4469d15b59af2c7bc38e40e01d4f2de665d2cd865e23f740"))
(1351600, uint256("0xbffe68798afd28133ce10636d1d4390177f8532e3807742b58b2527ab1ed2b95"))
;

// TestNet has no checkpoints
Expand Down
6 changes: 3 additions & 3 deletions src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
//

// These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 1
#define CLIENT_VERSION_MINOR 9
#define CLIENT_VERSION_MAJOR 2
#define CLIENT_VERSION_MINOR 0
#define CLIENT_VERSION_REVISION 0
#define CLIENT_VERSION_BUILD 1
#define CLIENT_VERSION_BUILD 0

// Converts the parameter X to a string after macro replacement on X has been performed.
// Don't merge these into one macro!
Expand Down
12 changes: 6 additions & 6 deletions src/init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ void Shutdown(void* parg)
delete pwalletMain;
NewThread(ExitTimeout, NULL);
MilliSleep(50);
printf("1337 exited\n\n");
printf("Elite exited\n\n");
fExit = true;
#ifndef QT_GUI
// ensure non-UI client gets exited here, but let Bitcoin-Qt reach 'return 0;' in bitcoin.cpp
Expand Down Expand Up @@ -489,7 +489,7 @@ bool AppInit2()
if (file) fclose(file);
static boost::interprocess::file_lock lock(pathLockFile.string().c_str());
if (!lock.try_lock())
return InitError(strprintf(_("Cannot obtain a lock on data directory %s. 1337 is probably already running."), strDataDir.c_str()));
return InitError(strprintf(_("Cannot obtain a lock on data directory %s. Elite is probably already running."), strDataDir.c_str()));

#if !defined(WIN32) && !defined(QT_GUI)
if (fDaemon)
Expand All @@ -516,7 +516,7 @@ bool AppInit2()
if (GetBoolArg("-shrinkdebugfile", !fDebug))
ShrinkDebugFile();
printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
printf("1337 version %s (%s)\n", FormatFullVersion().c_str(), CLIENT_DATE.c_str());
printf("Elite version %s (%s)\n", FormatFullVersion().c_str(), CLIENT_DATE.c_str());
printf("Using OpenSSL version %s\n", SSLeay_version(SSLEAY_VERSION));
if (!fLogTimestamps)
printf("Startup time: %s\n", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
Expand All @@ -525,7 +525,7 @@ bool AppInit2()
std::ostringstream strErrors;

if (fDaemon)
fprintf(stdout, "1337 server starting\n");
fprintf(stdout, "Elite server starting\n");

int64_t nStart;

Expand Down Expand Up @@ -777,10 +777,10 @@ bool AppInit2()
uiInterface.ThreadSafeMessageBox(msg, _("1337"), CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
}
else if (nLoadWalletRet == DB_TOO_NEW)
strErrors << _("Error loading wallet.dat: Wallet requires newer version of 1337") << "\n";
strErrors << _("Error loading wallet.dat: Wallet requires newer version of Elite") << "\n";
else if (nLoadWalletRet == DB_NEED_REWRITE)
{
strErrors << _("Wallet needed to be rewritten: restart 1337 to complete") << "\n";
strErrors << _("Wallet needed to be rewritten: restart Elite to complete") << "\n";
printf("%s", strErrors.str().c_str());
return InitError(strErrors.str());
}
Expand Down
2 changes: 2 additions & 0 deletions src/kernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ static std::map<int, unsigned int> mapStakeModifierCheckpoints =
( 905233, 0xdf7bb5d2 )
( 1005000, 0x879bd8b5 )
( 1049288, 0x9e0045e6 )
( 1149997, 0x5041c9f6 )
( 1351600, 0x9bc2676f )
;

// Hard checkpoints of stake modifiers to ensure they are deterministic (testNet)
Expand Down
42 changes: 24 additions & 18 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1135,23 +1135,24 @@ int64_t GetProofOfStakeRewardV7(int64_t nCoinAge, int64_t nFees)
return nSubsidy + nFees;
}

// miner's coin stake reward based on coin age spent (coin-days)
int64_t GetProofOfStakeRewardV8(int64_t nCoinAge, int64_t nFees)
{
int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);

if (fDebug && GetBoolArg("-printcreation"))
printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nCoinAge);

return nSubsidy + nFees;
}

int64_t GetProofOfStakeReward(int64_t nCoinAge, int64_t nFees, unsigned int nTime)
{
int64_t nReward = 0;
if(nTime > FORK_TIME6)
nReward = GetProofOfStakeRewardV6((int64_t)nCoinAge, nFees);
else if(nTime > FORK_TIME5)
nReward = GetProofOfStakeRewardV6((int64_t)nCoinAge, nFees);
else if(nTime > FORK_TIME4)
nReward = GetProofOfStakeRewardV5((int64_t)nCoinAge, nFees);
else if(nTime > FORK_TIME3)
nReward = GetProofOfStakeRewardV4((int64_t)nCoinAge, nFees);
else if(nTime > FORK_TIME2)
nReward = GetProofOfStakeRewardV3((int64_t)nCoinAge, nFees);
else if(nTime > FORK_TIME)
nReward = GetProofOfStakeRewardV2((int64_t)nCoinAge, nFees);
else
nReward = GetProofOfStakeRewardV1((int64_t)nCoinAge, nFees);
if(nTime > FORK_TIME7)
nReward = GetProofOfStakeRewardV8((int64_t)nCoinAge, nFees);
else if(nTime > FORK_TIME6)
nReward = GetProofOfStakeRewardV7((int64_t)nCoinAge, nFees);

return nReward;
}
Expand Down Expand Up @@ -2425,8 +2426,13 @@ bool ProcessBlock(CNode* pfrom, CBlock* pblock)
// Limited duplicity on stake: prevents block flood attack
// Duplicate stake allowed only when there is orphan child block
if (setStakeSeenOrphan.count(pblock2->GetProofOfStake()) && !mapOrphanBlocksByPrev.count(hash) && !Checkpoints::WantedByPendingSyncCheckpoint(hash))
return error("ProcessBlock() : duplicate proof-of-stake (%s, %d) for orphan block %s", pblock2->GetProofOfStake().first.ToString().c_str(), pblock2->GetProofOfStake().second, hash.ToString().c_str());
else
{
error("ProcessBlock() : duplicate proof-of-stake (%s, %d) for orphan block %s", pblock2->GetProofOfStake().first.ToString().c_str(), pblock2->GetProofOfStake().second, hash.ToString().c_str());
//pblock2 will not be needed, free it for better memory management
delete pblock2;
return false;
}
else
setStakeSeenOrphan.insert(pblock2->GetProofOfStake());
}
mapOrphanBlocks.insert(make_pair(hash, pblock2));
Expand Down Expand Up @@ -3018,7 +3024,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
CAddress addrFrom;
uint64_t nNonce = 1;
vRecv >> pfrom->nVersion >> pfrom->nServices >> nTime >> addrMe;
if (pfrom->nVersion < (GetAdjustedTime() > FORK_TIME6 ? MIN_PROTO_VERSION_FORK : MIN_PROTO_VERSION))
if (pfrom->nVersion < (GetAdjustedTime() > FORK_TIME7 ? MIN_PROTO_VERSION_FORK : MIN_PROTO_VERSION))
{
// Since February 20, 2012, the protocol is initiated at version 209,
// and earlier versions are no longer supported
Expand Down Expand Up @@ -3096,7 +3102,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
static int nAskedForBlocks = 0;
if (!pfrom->fClient && !pfrom->fOneShot &&
(pfrom->nStartingHeight > (nBestHeight - 144)) &&
(pfrom->nVersion < NOBLKS_VERSION_START || pfrom->nVersion > (GetAdjustedTime() > FORK_TIME6 ? NOBLKS_VERSION_END_FORK : NOBLKS_VERSION_END)) &&
(pfrom->nVersion < NOBLKS_VERSION_START || pfrom->nVersion > (GetAdjustedTime() > FORK_TIME7 ? NOBLKS_VERSION_END_FORK : NOBLKS_VERSION_END)) &&
(nAskedForBlocks < 1 || vNodes.size() <= 1))
{
nAskedForBlocks++;
Expand Down
5 changes: 3 additions & 2 deletions src/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,14 @@ static const unsigned int MAX_INV_SZ = 50000;
static const int64_t MIN_TX_FEE = 10000;
static const int64_t MIN_RELAY_TX_FEE = MIN_TX_FEE;
static const int64_t MAX_MONEY = 235311570 * COIN;
static const int64_t COIN_YEAR_REWARD = 1337 * CENT; // 1337%, After fork1 668.5%, after fork2 334.25%
static const int64_t COIN_YEAR_REWARD = 1.337 * CENT; // 1.337% per year (Final APR). Previous APRs - 1337%, After fork1 668.5%, after fork2 334.25% and so on...
static const unsigned int FORK_TIME = 1459695600; // Sun, 03 Apr 2016 15:00:00 GMT
static const unsigned int FORK_TIME2 = 1472125032; // Thu, 25 Aug 2016 11:37:12 GMT
static const unsigned int FORK_TIME3 = 1480081025; // Fri, 25 Nov 2016 13:37:05 GMT
static const unsigned int FORK_TIME4 = 1489357342; // Sun, 12 Mar 2017 22:22:22 GMT
static const unsigned int FORK_TIME5 = 1497101820; // Saturday 10 June 2017 13:37:00
static const unsigned int FORK_TIME6 = 1505150100; // Sunday 24 Sept 2017 13:37:00
static const unsigned int FORK_TIME6 = 1505150100; // Sunday 11 Sept 2017 17:15:00
static const unsigned int FORK_TIME7 = 1522503420; // Saturday 31 Mar 2018 13:37:00 GMT

inline bool MoneyRange(int64_t nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }
// Threshold for nLockTime: below this value it is interpreted as block number, otherwise as UNIX timestamp.
Expand Down
2 changes: 1 addition & 1 deletion src/qt/askpassphrasedialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ void AskPassphraseDialog::accept()
{
QMessageBox::warning(this, tr("Wallet encrypted"),
"<qt>" +
tr("1337 will close now to finish the encryption process. "
tr("Elite will close now to finish the encryption process. "
"Remember that encrypting your wallet cannot fully protect "
"your coins from being stolen by malware infecting your computer.") +
"<br><br><b>" +
Expand Down
Loading

0 comments on commit f078701

Please sign in to comment.