Pages:
Author

Topic: [ANN][JPC]MAKE JACKPOTCOIN GREAT AGAIN! - page 50. (Read 470251 times)

sr. member
Activity: 396
Merit: 250
I speak: LT, RU, EN
August 16, 2014, 01:53:35 PM
Guys, can anyone explain how to calculate staking profits? Say I buy 10 mil JPC and put them in my wallet, start staking.. how much will I make on average in a day/week?

PoS:
- 20 sec block target
- diff retarget each block
- PoS daily interest payout initially at 0.1% per day (equivalent to 44% annual interest rate), gradually dropping down to 0.01% per day (equivalent to 3.7% annual rate), the decrease will be over a period of 5 years (rate adjusted each 3 months). Then it will stay at this rate.
- minimum holding time before the pos will be generated: 1 day.
- max accumulated coin-day is 30 days (after 30 days, only the 130-day coin-day will be counted).

So, you must calculate % yourself - guess nobody done this yet Cheesy
legendary
Activity: 1106
Merit: 1014
August 16, 2014, 01:09:28 PM
Guys, can anyone explain how to calculate staking profits? Say I buy 10 mil JPC and put them in my wallet, start staking.. how much will I make on average in a day/week?
newbie
Activity: 26
Merit: 0
August 16, 2014, 12:21:02 PM
Hello All,

I'm new to JPC and I'm having trouble synchronizing my wallet past block 500000. I found the following information in my debug.log:
Code:
08/16/14 14:30:01 ERROR: CheckProofOfStake() : INFO: read txPrev failed
08/16/14 14:30:01 WARNING: ProcessBlock(): check proof-of-stake failed for block ac923d44cbeea785da2464fc5235f3aec6d046af9164e2dc33f700d91d7cc719
08/16/14 14:30:04 ERROR: AcceptBlock() : rejected by hardened checkpoint lock-in at 500001
08/16/14 14:30:04 ERROR: ProcessBlock() : AcceptBlock FAILED
08/16/14 14:30:04 Misbehaving: 67.8.38.82:15371 (0 -> 100) DISCONNECTING
08/16/14 14:30:04 disconnecting node 67.8.38.82:15371

I built my wallet from from the latest source on github (ece0c8abf7). Any help would be greatly appreciated.

fwiw, I've git reset my local repo to the PoS Bugfix commit (df207d524c), rebuilt, and I'm trying to sync the blockchain from scratch now. I wonder if I'll run into the same issue.

newbie
Activity: 26
Merit: 0
August 16, 2014, 12:10:18 PM
I built my wallet from from the latest source on github (ece0c8abf7). Any help would be greatly appreciated.

What gcc do you use? I have 4.9.1.


> gcc --version
gcc (SUSE Linux) 4.8.1 20130909 [gcc-4_8-branch revision 202388]

sr. member
Activity: 336
Merit: 250
August 16, 2014, 12:04:25 PM
I built my wallet from from the latest source on github (ece0c8abf7). Any help would be greatly appreciated.

What gcc do you use? I have 4.9.1.
newbie
Activity: 26
Merit: 0
August 16, 2014, 10:45:06 AM
Hello All,

I'm new to JPC and I'm having trouble synchronizing my wallet past block 500000. I found the following information in my debug.log:
Code:
08/16/14 14:30:01 ERROR: CheckProofOfStake() : INFO: read txPrev failed
08/16/14 14:30:01 WARNING: ProcessBlock(): check proof-of-stake failed for block ac923d44cbeea785da2464fc5235f3aec6d046af9164e2dc33f700d91d7cc719
08/16/14 14:30:04 ERROR: AcceptBlock() : rejected by hardened checkpoint lock-in at 500001
08/16/14 14:30:04 ERROR: ProcessBlock() : AcceptBlock FAILED
08/16/14 14:30:04 Misbehaving: 67.8.38.82:15371 (0 -> 100) DISCONNECTING
08/16/14 14:30:04 disconnecting node 67.8.38.82:15371

I built my wallet from from the latest source on github (ece0c8abf7). Any help would be greatly appreciated.

member
Activity: 67
Merit: 10
August 16, 2014, 05:45:41 AM
v1.5.0 Final Beta not compiling

Code:
g++ -c -pipe -fstack-protector-all --param ssp-buffer-size=1 -msse2 -w -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -O2 -D_REENTRANT -fdiagnostics-show-option -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -Wstack-protector -DQT_GUI -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -DBOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN -D__NO_SYSTEM_INCLUDES -DUSE_UPNP=1 -DSTATICLIB -DHAVE_BUILD_INFO -DLINUX -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/lib64/qt4/mkspecs/linux-g++ -I/usr/include/QtCore -I/usr/include/QtNetwork -I/usr/include/QtGui -I/usr/include -Isrc -Isrc/json -Isrc/qt -Ibuild -Ibuild -o build/bitcoingui.o src/qt/bitcoingui.cpp
src/qt/bitcoingui.cpp: In member function ‘void BitcoinGUI::updateMintingIcon()’:
src/qt/bitcoingui.cpp:1031:82: error: no matching function for call to ‘CWallet::GetStakeWeight(CWallet&, uint64_t&, uint64_t&, uint64_t&)’
         pwalletMain->GetStakeWeight(*pwalletMain, nMinWeight, nMaxWeight, nWeight);
                                                                                  ^
src/qt/bitcoingui.cpp:1031:82: note: candidate is:
In file included from src/qt/bitcoingui.cpp:23:0:
src/wallet.h:180:10: note: bool CWallet::GetStakeWeight(const CKeyStore&, uint64&, uint64&, uint64&)
     bool GetStakeWeight(const CKeyStore& keystore, uint64& nMinWeight, uint64& nMaxWeight, uint64& nWeight);
          ^
src/wallet.h:180:10: note:   no known conversion for argument 2 from ‘uint64_t {aka long unsigned int}’ to ‘uint64& {aka long long unsigned int&}’


Waiting for the new wallet. TY  Grin
sr. member
Activity: 336
Merit: 250
August 16, 2014, 05:20:15 AM
v1.5.0 Final Beta not compiling

Code:
g++ -c -pipe -fstack-protector-all --param ssp-buffer-size=1 -msse2 -w -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -O2 -D_REENTRANT -fdiagnostics-show-option -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -Wstack-protector -DQT_GUI -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -DBOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN -D__NO_SYSTEM_INCLUDES -DUSE_UPNP=1 -DSTATICLIB -DHAVE_BUILD_INFO -DLINUX -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/lib64/qt4/mkspecs/linux-g++ -I/usr/include/QtCore -I/usr/include/QtNetwork -I/usr/include/QtGui -I/usr/include -Isrc -Isrc/json -Isrc/qt -Ibuild -Ibuild -o build/bitcoingui.o src/qt/bitcoingui.cpp
src/qt/bitcoingui.cpp: In member function ‘void BitcoinGUI::updateMintingIcon()’:
src/qt/bitcoingui.cpp:1031:82: error: no matching function for call to ‘CWallet::GetStakeWeight(CWallet&, uint64_t&, uint64_t&, uint64_t&)’
         pwalletMain->GetStakeWeight(*pwalletMain, nMinWeight, nMaxWeight, nWeight);
                                                                                  ^
src/qt/bitcoingui.cpp:1031:82: note: candidate is:
In file included from src/qt/bitcoingui.cpp:23:0:
src/wallet.h:180:10: note: bool CWallet::GetStakeWeight(const CKeyStore&, uint64&, uint64&, uint64&)
     bool GetStakeWeight(const CKeyStore& keystore, uint64& nMinWeight, uint64& nMaxWeight, uint64& nWeight);
          ^
src/wallet.h:180:10: note:   no known conversion for argument 2 from ‘uint64_t {aka long unsigned int}’ to ‘uint64& {aka long long unsigned int&}’
newbie
Activity: 8
Merit: 0
August 16, 2014, 05:04:35 AM
Hi.

I dont get jpc Stakes today! Any problem?
Everything OK with my stakes. Restart sys, then check your p2p blockers. You've got your wallet sync? Or maybe It has "frozen".

In last 24 hours only 4 Stakes and little ones! I restart now, and unlock wallet, and will wait Smiley
legendary
Activity: 1540
Merit: 1011
FUD Philanthropist™
August 16, 2014, 04:27:29 AM
reward still 20K ..price has gotta go up at some point Wink
people have the wrong impression i think with total coins !

like why is IFC etc trading at around 300 and JPC is at 12 ? lol dumb ..i am buying and staking  Cool
member
Activity: 67
Merit: 10
hero member
Activity: 700
Merit: 500
Member of the Crypti Foundation Board of Directors
August 15, 2014, 09:55:37 PM
JACKPOT HIT.

Who is buying drinks?

583163    2014-08-15 20:03:25    20568524.094792 JPC    miningpoolhub    JS3omrhUAtRs2vWkqt8TCoicbaJbPQ4Szf

But does not show on their block finder

The trigger should be 58162.

583162    Confirmed    anonymous    16/08 00:02:47 (UTC)    207.58    20,589.11    850,255    648,421    684,625    80.52

reward still 20K. 
sr. member
Activity: 282
Merit: 250
August 15, 2014, 09:41:50 PM
JACKPOT HIT.

Who is buying drinks?

583163    2014-08-15 20:03:25    20568524.094792 JPC    miningpoolhub    JS3omrhUAtRs2vWkqt8TCoicbaJbPQ4Szf

But does not show on their block finder

The trigger should be 58162.
hero member
Activity: 700
Merit: 500
Member of the Crypti Foundation Board of Directors
August 15, 2014, 08:55:59 PM
JACKPOT HIT.

Who is buying drinks?

583163    2014-08-15 20:03:25    20568524.094792 JPC    miningpoolhub    JS3omrhUAtRs2vWkqt8TCoicbaJbPQ4Szf

But does not show on their block finder
newbie
Activity: 45
Merit: 0
August 15, 2014, 06:48:30 PM
Hi.

I dont get jpc Stakes today! Any problem?
Everything OK with my stakes. Restart sys, then check your p2p blockers. You've got your wallet sync? Or maybe It has "frozen".
newbie
Activity: 8
Merit: 0
August 15, 2014, 06:09:41 PM
Hi.

I dont get jpc Stakes today! Any problem?
legendary
Activity: 1582
Merit: 1019
011110000110110101110010
August 15, 2014, 04:37:47 PM
Off topic a little.

Bter exchange was hacked for 45million NXT and 112BTC.  All hell has broken loose in the past few hours there as the herd mentality took over and a massive SELL ALL COINS AT ANY COST attitude took over the account holders.

Bter even paid the hacker 100BTC more to return the NXT.  He failed to return the NXT.  More panic selling........

Then cooler heads prevailed with the NXT devs, who agreed to erase the transaction from the blockchain.  This was not a rollback, but an erasure of one transaction, requiring a download of the new editted blockchain by all NXT wallets.



What if the hacker was fictions and this was all a ruse?

These devs have royally fucked up. You do not do this for a hack. It is not the coins fault. It is not the devs fault. This was a very bad precedent to set!

hero member
Activity: 700
Merit: 500
Member of the Crypti Foundation Board of Directors
August 15, 2014, 12:52:16 PM
COINWARS IS UP
sr. member
Activity: 1036
Merit: 275
August 15, 2014, 11:52:28 AM
all i know is i just went to vote for JPC on coinwarz and it was not on the list now !
then i looked all over the site to see if it was added and i didn't find it Sad

and sorry i don't want to go to Twitter web pages so if someone can post info from what happened there ? than thanks Smiley

from their twitter :

Quote
The #JackpotCoin #JPC community has spoken.  @JackpotCoin will be added to #coinwarz later today.  #bitcoin #cryptocurrency

Don't panic Tongue

there is nothing to panic
legendary
Activity: 1540
Merit: 1011
FUD Philanthropist™
August 15, 2014, 11:40:11 AM
Off topic a little.

Bter exchange was hacked for 45million NXT and 112BTC.  All hell has broken loose in the past few hours there as the herd mentality took over and a massive SELL ALL COINS AT ANY COST attitude took over the account holders.

Bter even paid the hacker 100BTC more to return the NXT.  He failed to return the NXT.  More panic selling........

Then cooler heads prevailed with the NXT devs, who agreed to erase the transaction from the blockchain.  This was not a rollback, but an erasure of one transaction, requiring a download of the new editted blockchain by all NXT wallets.



i added your comment to a POLL in the main section Wink
Pages:
Jump to: