Pages:
Author

Topic: [ANN] [PMP] PreminePlus Launch ~ New Features! ~ Oct Signup Free Distribution! - page 28. (Read 148958 times)

uki
legendary
Activity: 1358
Merit: 1000
cryptojunk bag holder
I cant seem to get this wallet to sync. I have 4 active connections but it always stalls on 121 days since lask block.
ver sept 16th stable
have you tried restarting the wallet?

Yes, In fact I have gone through the last 3 versions and It never synced. Each version stalled at some point. It didnt bother me at the time as i figured it was a bug and a new version would solve the problem

here is the output of getpeerinfo for my wallet. Please double check, what nodes do you have in yours, and modify the conf file, if needed.
a small update of wallet was planned at some point, but as the most recent version was pretty stable, we put it lower on the priority list and worked on other issues.

Code:
{
"addr" : "108.61.203.134:17222",
"services" : "00000001",
"lastsend" : 1415105908,
"lastrecv" : 1415105909,
"conntime" : 1415098224,
"version" : 60009,
"subver" : "/PreminePlus:0.7.7/",
"inbound" : false,
"releasetime" : 0,
"startingheight" : 47234,
"banscore" : 0
},
{
"addr" : "109.87.255.75:17222",
"services" : "00000001",
"lastsend" : 1415105908,
"lastrecv" : 1415105908,
"conntime" : 1415098283,
"version" : 60009,
"subver" : "/PreminePlus:0.7.7/",
"inbound" : false,
"releasetime" : 0,
"startingheight" : 47234,
"banscore" : 0
},
{
"addr" : "62.75.210.162:17222",
"services" : "00000001",
"lastsend" : 1415105908,
"lastrecv" : 1415105908,
"conntime" : 1415098295,
"version" : 60009,
"subver" : "/PreminePlus:0.7.7/",
"inbound" : false,
"releasetime" : 0,
"startingheight" : 47234,
"banscore" : 0
},
{
"addr" : "178.62.170.139:17222",
"services" : "00000001",
"lastsend" : 1415104802,
"lastrecv" : 1415105908,
"conntime" : 1415098532,
"version" : 60009,
"subver" : "/PreminePlus:0.7.7/",
"inbound" : false,
"releasetime" : 0,
"startingheight" : 47234,
"banscore" : 0
},
{
"addr" : "[2001:0:9d38:90d7:14f4:91d:b72f:be1d]:17222",
"services" : "00000001",
"lastsend" : 1415105908,
"lastrecv" : 1415105909,
"conntime" : 1415101709,
"version" : 60009,
"subver" : "/PreminePlus:0.7.7/",
"inbound" : false,
"releasetime" : 0,
"startingheight" : 47244,
"banscore" : 0
}
legendary
Activity: 1279
Merit: 1018
I cant seem to get this wallet to sync. I have 4 active connections but it always stalls on 121 days since lask block.
ver sept 16th stable
have you tried restarting the wallet?

Yes, In fact I have gone through the last 3 versions and It never synced. Each version stalled at some point. It didnt bother me at the time as i figured it was a bug and a new version would solve the problem
legendary
Activity: 882
Merit: 1001
New monthly stakes should be coming soon!
yeah, wait for the new distribution.
come on.
uki
legendary
Activity: 1358
Merit: 1000
cryptojunk bag holder
I cant seem to get this wallet to sync. I have 4 active connections but it always stalls on 121 days since lask block.
ver sept 16th stable
have you tried restarting the wallet?
legendary
Activity: 1279
Merit: 1018
I cant seem to get this wallet to sync. I have 4 active connections but it always stalls on 121 days since lask block.
ver sept 16th stable
sr. member
Activity: 420
Merit: 250
New monthly stakes should be coming soon!

Already? Wow time goes fast Smiley
hero member
Activity: 700
Merit: 500
uki
legendary
Activity: 1358
Merit: 1000
cryptojunk bag holder
New monthly stakes should be coming soon!
hero member
Activity: 532
Merit: 500
Hi everyone,

I'm a Linux user and i think that there is one or two thing missing in the 'install_PreminePlus.sh' that can help other Linux users.
In:
Code:
echo "\n\ninstalling dependencies:\n"
sudo apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev \
        libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
        libssl-dev libdb-dev git

it miss libdb++-dev. If you don't add it, you'll recieve that kind of error : fatal error: db_cxx.h

Plus, it miss miniupnpc with an error like : miniupnp/minupnpc.h : file missing

i think you can add miniupnpd deposit with all deposit file, but the better way( not the easy one) is to download the latest miniupnpc at: http://miniupnp.free.fr/files/
And:
Code:
	
tar xzvf miniupnpc-1.9.20141027.tar.gz #it's the latest version today
cd miniupnpc-1.9.20141027
sudo -s
INSTALLPREFIX=/usr/local make install
exit

EDIT::
THE easy way:
Code:
sudo apt-get install libminiupnpc-dev # Maybe you'll need a reboot after that

I was unable to install PreminPlus-qt without this modification/installation;  with a classic ubuntu 14.10 installation

hope this can be helpful for someone

Drop me your PMP address in a PM. I'll send you a tip.  Smiley
newbie
Activity: 2
Merit: 0
Hi everyone,

I'm a Linux user and i think that there is one or two thing missing in the 'install_PreminePlus.sh' that can help other Linux users.
In:
Code:
echo "\n\ninstalling dependencies:\n"
sudo apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev \
        libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
        libssl-dev libdb-dev git

it miss libdb++-dev. If you don't add it, you'll recieve that kind of error : fatal error: db_cxx.h

Plus, it miss miniupnpc with an error like : miniupnp/minupnpc.h : file missing

i think you can add miniupnpd deposit with all deposit file, but the better way( not the easy one) is to download the latest miniupnpc at: http://miniupnp.free.fr/files/
And:
Code:
	
tar xzvf miniupnpc-1.9.20141027.tar.gz #it's the latest version today
cd miniupnpc-1.9.20141027
sudo -s
INSTALLPREFIX=/usr/local make install
exit

EDIT::
THE easy way:
Code:
sudo apt-get install libminiupnpc-dev # Maybe you'll need a reboot after that

I was unable to install PreminPlus-qt without this modification/installation;  with a classic ubuntu 14.10 installation

hope this can be helpful for someone
hero member
Activity: 700
Merit: 500
i have received    72.959416 coins.
is this from Oct Signup Free Distribution?

Yes it is. Every month you get smaller amount of coins.
sr. member
Activity: 322
Merit: 250
Super Smash Bros. Ultimate Available Now!
i have received    72.959416 coins.
is this from Oct Signup Free Distribution?
legendary
Activity: 1624
Merit: 1005
I wish you all love and profitable investments!!!
Comkort was the first to list us. This was done without discussion with the dev team. When a bigger exchange lists us, we want to ensure the timing is right. Don't worry, Comkort won't be the last exchange to list us.

Other exchanges are of course free to list us. It's a free market, after all, however they'll have less relevance when a bigger exchange lists us. The most important thing is trading volume, and traders flock to exchanges with the biggest trade volume.

Agree Nullu. We will need to first have some more support from the community, both at IRC and Twitter before we can consider any application at bigger exchanges. For now our IRC is almost quiet and we need much more followers on Twitter. 

I was considering developing an online giveaway system. Basically. Rather than you receive the coins, you can email invites to others which provide a link for them to enter their PMP address to receive funds from the website. The inviter would also receive coins when the other person has collected theirs. It will be entirely donation driven. I'll of course donate a generous amount to start it. I'm not sure how much work it would involve. The system itself wouldn't be difficult, but the user validation could be a pain.

Let me know if this interests the community and I'll look into it.

Yes, go ahead!
hero member
Activity: 742
Merit: 500

We are still working on PMP there's development going on but as every development it needs time.

The leftover coins are still in the swap wallet. There's no decision what's going to happen with those coins yet.

I don't know the exact number of coins in circulation right now but you may check the number of swapped coins here: https://bitcointalksearch.org/topic/ann-premine-pmc-swap-to-premineplus-pmp-665048

In each giveaway round 80000 PMP were spread and we still have 3 rounds ahead of us.


thanks for the update of the project, good communication is important.
legendary
Activity: 1131
Merit: 1001

We are still working on PMP there's development going on but as every development it needs time.

The leftover coins are still in the swap wallet. There's no decision what's going to happen with those coins yet.

I don't know the exact number of coins in circulation right now but you may check the number of swapped coins here: https://bitcointalksearch.org/topic/ann-premine-pmc-swap-to-premineplus-pmp-665048

In each giveaway round 80000 PMP were spread and we still have 3 rounds ahead of us.

hero member
Activity: 714
Merit: 500
y²=x3+ax+b, a=0,b=7
Havent heard from the developer for a while.
Is he still working on it?

Also what happened to the leftover coins from PMC swap?
Are they being destroyed?
If so whats the total number of PMP coins in circulation after all the destruction?

An update of the OP with the above info would be good.
uki
legendary
Activity: 1358
Merit: 1000
cryptojunk bag holder
please also don't forget to check our new dice site and win additional PMP there:
http://www.pmpdice.com/

not even paying out
we will check that out. please send TMX the details by pm.
hero member
Activity: 700
Merit: 501
please also don't forget to check our new dice site and win additional PMP there:
http://www.pmpdice.com/

not even paying out
sr. member
Activity: 242
Merit: 250
I confirm that I received this months giveaway! Than you!
uki
legendary
Activity: 1358
Merit: 1000
cryptojunk bag holder
please also don't forget to check our new dice site and win additional PMP there:
http://www.pmpdice.com/
Pages:
Jump to: