Bitcoin Forum
April 24, 2024, 11:46:41 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 [906] 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 ... 1035 »
  Print  
Author Topic: [ANN] [MINT] Mintcoin (POS / 5%) [NO ICO] [Fair distro, community maintained]  (Read 1369739 times)
cryptomommy
Sr. Member
****
Offline Offline

Activity: 425
Merit: 250


View Profile
July 03, 2015, 04:51:05 PM
 #18101

So basically it will just be 5% gain per year forever. Cool. I actually think that is better because it will always motivate people to keep minting. Like a goid savings bond not too low, but not too high. BTW, Mintcoin just hit a new all time high.  80 sats! ^ ^

Indeed RoboGuy pointed this out to me when he first started and we agreed to leave it - this will make up for the coins "lost" for whatever reason. Mintpal.com (no relations to Mintcoin) was holding a significant amount of coins when they went under. We have no idea if those coins were lost of cashed out.
1713959201
Hero Member
*
Offline Offline

Posts: 1713959201

View Profile Personal Message (Offline)

Ignore
1713959201
Reply with quote  #2

1713959201
Report to moderator
1713959201
Hero Member
*
Offline Offline

Posts: 1713959201

View Profile Personal Message (Offline)

Ignore
1713959201
Reply with quote  #2

1713959201
Report to moderator
"If you don't want people to know you're a scumbag then don't be a scumbag." -- margaritahuyan
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713959201
Hero Member
*
Offline Offline

Posts: 1713959201

View Profile Personal Message (Offline)

Ignore
1713959201
Reply with quote  #2

1713959201
Report to moderator
1713959201
Hero Member
*
Offline Offline

Posts: 1713959201

View Profile Personal Message (Offline)

Ignore
1713959201
Reply with quote  #2

1713959201
Report to moderator
1713959201
Hero Member
*
Offline Offline

Posts: 1713959201

View Profile Personal Message (Offline)

Ignore
1713959201
Reply with quote  #2

1713959201
Report to moderator
presstab
Legendary
*
Offline Offline

Activity: 1330
Merit: 1000


Blockchain Developer


View Profile
July 03, 2015, 04:53:18 PM
 #18102

So the fork will be at about 85,000 blocks from now?

I am coding in the fork as we speak. I have set it for:
Code:
static const unsigned int FORK_TIME = 1438444800; // Sat, 01 Aug 2015 16:00:00 GMT

This is a time and date when I will be available to provide some QR code if needed (quick response Tongue )

Watch https://github.com/presstab/Mintcoin-Desktop-Wallet/commits/master today if you want to watch the fork commits. It will be merged with the main mintcoin repo after proper scrutiny.


Projects I Contribute To: libzerocoin | Veil | PIVX | HyperStake | Crown | SaluS
Crestington
Legendary
*
Offline Offline

Activity: 882
Merit: 1024



View Profile
July 03, 2015, 06:00:03 PM
 #18103

So the fork will be at about 85,000 blocks from now?

I am coding in the fork as we speak. I have set it for:
Code:
static const unsigned int FORK_TIME = 1438444800; // Sat, 01 Aug 2015 16:00:00 GMT

This is a time and date when I will be available to provide some QR code if needed (quick response Tongue )

Watch https://github.com/presstab/Mintcoin-Desktop-Wallet/commits/master today if you want to watch the fork commits. It will be merged with the main mintcoin repo after proper scrutiny.



I would suggest that if coding in a fork to also bump the protocol number and reject old clients once the fork is in effect. Even if the fork is set a month in advance, there are many that would not upgrade and will just use their old client and this can lead to chain conflicts, stuck blocks. If you reject old protocols then they will not be able to sync with the rest of the network, this is fine because if someone cannot sync, they will come here anyways and ask why, realize they need to be on the latest version and upgrade and back up to speed. If you do not reject old clients then they may be able to sync, it won't be apparent they need to upgrade and won't so it's best not to allow that to happen.

You can add it to the main.cpp file and Block old clients based on time and protocol number, this is an example from PayCon.

        if (nTime > 1430124800 && pfrom->nVersion < 70122)
        {
            // Since February 20, 2012, the protocol is initiated at version 209,
            // and earlier versions are no longer supported
            printf("partner %s using obsolete version %i; disconnecting\n", pfrom->addr.ToString().c_str(), pfrom->nVersion);
            pfrom->fDisconnect = true;
            return false;
        }
Derek492
Sr. Member
****
Offline Offline

Activity: 356
Merit: 250



View Profile
July 03, 2015, 06:53:04 PM
 #18104

So the fork will be at about 85,000 blocks from now?

I am coding in the fork as we speak. I have set it for:
Code:
static const unsigned int FORK_TIME = 1438444800; // Sat, 01 Aug 2015 16:00:00 GMT

This is a time and date when I will be available to provide some QR code if needed (quick response Tongue )

Watch https://github.com/presstab/Mintcoin-Desktop-Wallet/commits/master today if you want to watch the fork commits. It will be merged with the main mintcoin repo after proper scrutiny.



Does it happen according to a specific date or a specific block? Im a little confused.

Stop Mining.   Start Minting.   Mintcoin  [MINT]
5% annual minting reward. Mintcoins don't wear out like mining gear. They keep on minting!
supasonic
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
July 03, 2015, 07:03:54 PM
 #18105

So the fork will be at about 85,000 blocks from now?

I am coding in the fork as we speak. I have set it for:
Code:
static const unsigned int FORK_TIME = 1438444800; // Sat, 01 Aug 2015 16:00:00 GMT

This is a time and date when I will be available to provide some QR code if needed (quick response Tongue )

Watch https://github.com/presstab/Mintcoin-Desktop-Wallet/commits/master today if you want to watch the fork commits. It will be merged with the main mintcoin repo after proper scrutiny.



Does it happen according to a specific date or a specific block? Im a little confused.

Specific block. Estimated date.
supasonic
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
July 03, 2015, 07:15:11 PM
 #18106

Kind of off topic but I'm an owner of mintcoin and a developer so I thought I'd try to go through the code. I've downloaded the code and I was going to build it but I wonder what the recommended IDE is.  Are you guys use QT-Creator?  That's what robo guy said he was using.  I'm mostly a windows guy.  Is it possible to successfully build the mintcoin wallet in windows or is that not recommended?  Thanks is advance.

I code on Mint! The Debian version, a linux distro, using qtCreator and sublime. It can be done on windows using minGW but its an involved process which makes you think like a linux user. At that point just become one with virtualbox and any free distro.

Sticking with windows I saw a thread that may be helpful in trying it.
https://bitcointalk.org/index.php?topic=149479.0

I am working on a guide for a partner getting into crypto and linux. Might just post that when its done.
mchrist152
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
July 03, 2015, 07:20:23 PM
 #18107

So the fork will be at about 85,000 blocks from now?

I am coding in the fork as we speak. I have set it for:
Code:
static const unsigned int FORK_TIME = 1438444800; // Sat, 01 Aug 2015 16:00:00 GMT

This is a time and date when I will be available to provide some QR code if needed (quick response Tongue )

Watch https://github.com/presstab/Mintcoin-Desktop-Wallet/commits/master today if you want to watch the fork commits. It will be merged with the main mintcoin repo after proper scrutiny.



I would suggest that if coding in a fork to also bump the protocol number and reject old clients once the fork is in effect. Even if the fork is set a month in advance, there are many that would not upgrade and will just use their old client and this can lead to chain conflicts, stuck blocks. If you reject old protocols then they will not be able to sync with the rest of the network, this is fine because if someone cannot sync, they will come here anyways and ask why, realize they need to be on the latest version and upgrade and back up to speed. If you do not reject old clients then they may be able to sync, it won't be apparent they need to upgrade and won't so it's best not to allow that to happen.

You can add it to the main.cpp file and Block old clients based on time and protocol number, this is an example from PayCon.

        if (nTime > 1430124800 && pfrom->nVersion < 70122)
        {
            // Since February 20, 2012, the protocol is initiated at version 209,
            // and earlier versions are no longer supported
            printf("partner %s using obsolete version %i; disconnecting\n", pfrom->addr.ToString().c_str(), pfrom->nVersion);
            pfrom->fDisconnect = true;
            return false;
        }


I agree with this completely.  People don't always pay attention to wallet releases and if the wallet appears to be working normally they just let it go.  This will let them know that they need to upgrade.
presstab
Legendary
*
Offline Offline

Activity: 1330
Merit: 1000


Blockchain Developer


View Profile
July 03, 2015, 07:34:12 PM
 #18108

So the fork will be at about 85,000 blocks from now?

I am coding in the fork as we speak. I have set it for:
Code:
static const unsigned int FORK_TIME = 1438444800; // Sat, 01 Aug 2015 16:00:00 GMT

This is a time and date when I will be available to provide some QR code if needed (quick response Tongue )

Watch https://github.com/presstab/Mintcoin-Desktop-Wallet/commits/master today if you want to watch the fork commits. It will be merged with the main mintcoin repo after proper scrutiny.



Does it happen according to a specific date or a specific block? Im a little confused.

Specific block. Estimated date.

It's a specific epoch/Unix time. Please don't give out details if you aren't quite sure, this will help avoid confusion with the fork.

Projects I Contribute To: libzerocoin | Veil | PIVX | HyperStake | Crown | SaluS
presstab
Legendary
*
Offline Offline

Activity: 1330
Merit: 1000


Blockchain Developer


View Profile
July 03, 2015, 07:34:44 PM
 #18109

So the fork will be at about 85,000 blocks from now?

I am coding in the fork as we speak. I have set it for:
Code:
static const unsigned int FORK_TIME = 1438444800; // Sat, 01 Aug 2015 16:00:00 GMT

This is a time and date when I will be available to provide some QR code if needed (quick response Tongue )

Watch https://github.com/presstab/Mintcoin-Desktop-Wallet/commits/master today if you want to watch the fork commits. It will be merged with the main mintcoin repo after proper scrutiny.



I would suggest that if coding in a fork to also bump the protocol number and reject old clients once the fork is in effect. Even if the fork is set a month in advance, there are many that would not upgrade and will just use their old client and this can lead to chain conflicts, stuck blocks. If you reject old protocols then they will not be able to sync with the rest of the network, this is fine because if someone cannot sync, they will come here anyways and ask why, realize they need to be on the latest version and upgrade and back up to speed. If you do not reject old clients then they may be able to sync, it won't be apparent they need to upgrade and won't so it's best not to allow that to happen.

You can add it to the main.cpp file and Block old clients based on time and protocol number, this is an example from PayCon.

        if (nTime > 1430124800 && pfrom->nVersion < 70122)
        {
            // Since February 20, 2012, the protocol is initiated at version 209,
            // and earlier versions are no longer supported
            printf("partner %s using obsolete version %i; disconnecting\n", pfrom->addr.ToString().c_str(), pfrom->nVersion);
            pfrom->fDisconnect = true;
            return false;
        }


I agree with this completely.  People don't always pay attention to wallet releases and if the wallet appears to be working normally they just let it go.  This will let them know that they need to upgrade.

Don't worry this is all already covered in the fork commit.

Projects I Contribute To: libzerocoin | Veil | PIVX | HyperStake | Crown | SaluS
drakoin
Hero Member
*****
Offline Offline

Activity: 826
Merit: 1000

see my profile


View Profile
July 03, 2015, 08:08:43 PM
 #18110

Ooooops coinmarket 20, not bad. Hadn't looked at this for months. Congratulations!

Question: I have a wallet v1.14, anything I need to know to update to v1.17?

Thx!

no sign of a signature
Crestington
Legendary
*
Offline Offline

Activity: 882
Merit: 1024



View Profile
July 03, 2015, 08:10:35 PM
 #18111

So the fork will be at about 85,000 blocks from now?

I am coding in the fork as we speak. I have set it for:
Code:
static const unsigned int FORK_TIME = 1438444800; // Sat, 01 Aug 2015 16:00:00 GMT

This is a time and date when I will be available to provide some QR code if needed (quick response Tongue )

Watch https://github.com/presstab/Mintcoin-Desktop-Wallet/commits/master today if you want to watch the fork commits. It will be merged with the main mintcoin repo after proper scrutiny.



I would suggest that if coding in a fork to also bump the protocol number and reject old clients once the fork is in effect. Even if the fork is set a month in advance, there are many that would not upgrade and will just use their old client and this can lead to chain conflicts, stuck blocks. If you reject old protocols then they will not be able to sync with the rest of the network, this is fine because if someone cannot sync, they will come here anyways and ask why, realize they need to be on the latest version and upgrade and back up to speed. If you do not reject old clients then they may be able to sync, it won't be apparent they need to upgrade and won't so it's best not to allow that to happen.

You can add it to the main.cpp file and Block old clients based on time and protocol number, this is an example from PayCon.

        if (nTime > 1430124800 && pfrom->nVersion < 70122)
        {
            // Since February 20, 2012, the protocol is initiated at version 209,
            // and earlier versions are no longer supported
            printf("partner %s using obsolete version %i; disconnecting\n", pfrom->addr.ToString().c_str(), pfrom->nVersion);
            pfrom->fDisconnect = true;
            return false;
        }


I agree with this completely.  People don't always pay attention to wallet releases and if the wallet appears to be working normally they just let it go.  This will let them know that they need to upgrade.

Don't worry this is all already covered in the fork commit.

All good, was just making sure. I had people still on old versions months later and since there was an original OP I couldn't control, there were also people trying to download there too but they could never connect and ask about it, I'd ask them what version it was and if they didn't know I'd get them to post a picture (It's also helpful if there are some cosmetic changes too) and then can just get them sorted and on the right version.
cryptomommy
Sr. Member
****
Offline Offline

Activity: 425
Merit: 250


View Profile
July 03, 2015, 08:12:48 PM
 #18112

Ooooops coinmarket 20, not bad. Hadn't looked at this for months. Congratulations!

Question: I have a wallet v1.14, anything I need to know to update to v1.17?

Thx!


Do it soon - I understand mintcoin stops minting if you are not on 1.17

We should be releasing the new version in the next couple weeks.
Flyskyhigh
Sr. Member
****
Offline Offline

Activity: 291
Merit: 250


Ezekiel 34:11, John 10:25-30


View Profile
July 03, 2015, 08:28:11 PM
 #18113

Ooooops coinmarket 20, not bad. Hadn't looked at this for months. Congratulations!

Question: I have a wallet v1.14, anything I need to know to update to v1.17?

Thx!


Do it soon - I understand mintcoin stops minting if you are not on 1.17

We should be releasing the new version in the next couple weeks.
1.15 works for minting too. The problem with 1.15 is it over calculates your total coins ever minted, because it counts orphans. So its not an accurate number. 1.17 is the wallet to be on at right now.

I'm excited for this coin. Probably more now than ever! Great to see good developments and cooperation.

Stoked about the  upcoming new wallet! Thank you all for your great work and commitment! Mintcoins going to be great! (Already is imo), looking forward to the future.  Smiley

Sick of mining?  Start minting!  5% per year!  Mintcoin "MINT"
drakoin
Hero Member
*****
Offline Offline

Activity: 826
Merit: 1000

see my profile


View Profile
July 03, 2015, 08:38:25 PM
 #18114

Ooooops coinmarket 20, not bad. Hadn't looked at this for months. Congratulations!
Question: I have a wallet v1.14, anything I need to know to update to v1.17?
Thx!
Do it soon - I understand mintcoin stops minting if you are not on 1.17
We should be releasing the new version in the next couple weeks.

Thanks, mommy ;-)

Done, and works. Beautiful, kudos. Syncing as we speak; that will take a while.

(-: Mf7wCiDe84QfG9SQgUkwTYxfYvpY2Rooua Thx!


no sign of a signature
mchrist152
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
July 03, 2015, 08:47:16 PM
 #18115

Ooooops coinmarket 20, not bad. Hadn't looked at this for months. Congratulations!

Question: I have a wallet v1.14, anything I need to know to update to v1.17?

Thx!


Do it soon - I understand mintcoin stops minting if you are not on 1.17

We should be releasing the new version in the next couple weeks.

Upgrade as soon as possible.  I was in the same situation.  To make a long story short, when I upgraded, I had to re-download the whole blockchain and repair the wallet (although I'm told there are quicker ways to do this).  I lost some coins but I think it was only because 1.14 said I was minting but I don't think I really was.  This is why it is so important to let users know that they need to upgrade their wallet.  I had no idea until I tried to upgrade and ran into this frustrating issue.
drakoin
Hero Member
*****
Offline Offline

Activity: 826
Merit: 1000

see my profile


View Profile
July 03, 2015, 09:00:47 PM
 #18116

Ooooops coinmarket 20, not bad. Hadn't looked at this for months. Congratulations!
Question: I have a wallet v1.14, anything I need to know to update to v1.17?
Thx!
Do it soon - I understand mintcoin stops minting if you are not on 1.17
We should be releasing the new version in the next couple weeks.
Thanks, mommy ;-)
Done, and works. Beautiful, kudos. Syncing as we speak; that will take a while.
(-: Mf7wCiDe84QfG9SQgUkwTYxfYvpY2Rooua Thx!

bootstrap.dat blockchain download anywhere? I am too impatient to wait a whole night ...

no sign of a signature
MarSas
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500


View Profile
July 03, 2015, 09:30:31 PM
 #18117

http://www.mintcoinofficial.com/
Download wallet
Download bootstrap.dat
Vicky789
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
July 03, 2015, 11:36:24 PM
 #18118

My wallet is out of sync and struck at block at 1268345 and is 76% done. It's been struck at that block from about last five days.. I have 8 active connections(nodes)as well on my wallet.. I am using mac and wallet version is v1.14.0.0. I also downloaded the lastest wallet v1.17.0.0 but when I open that it says error loading blinded.dat.. Please help
cryptomommy
Sr. Member
****
Offline Offline

Activity: 425
Merit: 250


View Profile
July 04, 2015, 01:54:49 AM
 #18119

My wallet is out of sync and struck at block at 1268345 and is 76% done. It's been struck at that block from about last five days.. I have 8 active connections(nodes)as well on my wallet.. I am using mac and wallet version is v1.14.0.0. I also downloaded the lastest wallet v1.17.0.0 but when I open that it says error loading blinded.dat.. Please help

Please go to %appdata% and click on the mintcoin folder - backup the wallet.dat file, delete everything else in the folder and try to re-install the wallet. PM me if you would like further assistance on this process.
MarSas
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500


View Profile
July 04, 2015, 07:10:39 AM
 #18120

My wallet is out of sync and struck at block at 1268345 and is 76% done. It's been struck at that block from about last five days.. I have 8 active connections(nodes)as well on my wallet.. I am using mac and wallet version is v1.14.0.0. I also downloaded the lastest wallet v1.17.0.0 but when I open that it says error loading blinded.dat.. Please help

You get that message because version 1.17 needs a complete resync.
Pages: « 1 ... 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 [906] 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 ... 1035 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!