Bitcoin Forum
May 08, 2024, 01:02:46 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: ..
1
2

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 [27] 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 ... 133 »
  Print  
Author Topic: [MOJO] MOJOv3 has been taken over by new devs  (Read 167263 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
r1d1
Hero Member
*****
Offline Offline

Activity: 957
Merit: 766



View Profile
April 07, 2016, 07:12:17 PM
 #521

EBK1000

As mentioned above stake works right for small amount of coins.
It's seems to be cause uint64 overflow.
I enable debug, printcreation and printcoinage.
And check debug.log:
Code:
GetProofOfStakeReward(): create=1.08395022 nCoinAge=263761221736
GetProofOfStakeReward(): create=0.53003278 nCoinAge=11197021089386

Why does we have the bigger reward (1.08) for less coinAge (263761221736) and vice versa?

The code for reward calculation:
Code:
int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365 / COIN;
First:
263761221736 * 15 * 1000000 / 365 / 10000000 = 108395022, 108395022 / 100000000 = 1,08395022 (we have 1.08395022 in the log)
It's right.
Second:
11197021089386 * 15  * 1000000 / 365 / 10000000 = 4601515516, 4601515516 / 100000000 = 46,01515516  (but we have only 0.53003278 in the log)
It's not correct.
We must receive ~46, but we receive only ~0.5 due uint64 overflow.

Max value of uint64 is: 18,446,744,073,709,551,615
In example above we have: 11197021089386 * 15  * 1000000 = 167955316340790000000

167,955,316,340,790,000,000
vs
18,446,744,073,709,551,615
Overflow happened.

I suggest change the code:
Code:
    int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365 / COIN;
To:
Code:
    int64_t nSubsidy = (nCoinAge / COIN) * nRewardCoinYear / 365;
Possible brackets are not needed - it is necessary to test.
Or:
Code:
       int64_t nRewardCoinYear = 1;

if (nHeight < 512000)
nRewardCoinYear = 15;
if (nHeight >= 512000 && nHeight < 1025000)
nRewardCoinYear = 10;
if (nHeight >= 1025000 && nHeight < 1537000)
nRewardCoinYear = 5;

    int64_t nSubsidy = nCoinAge * nRewardCoinYear / 365 / 100;
If you not plan to change the CENT and COIN value in main.h in the future.


Wink
BitcoinCleanup.com: Learn why Bitcoin isn't bad for the environment
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715173366
Hero Member
*
Offline Offline

Posts: 1715173366

View Profile Personal Message (Offline)

Ignore
1715173366
Reply with quote  #2

1715173366
Report to moderator
EBK1000 (OP)
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


A Wound in Eternity


View Profile
April 07, 2016, 07:14:57 PM
 #522

I'll look into it and get back to you

Soooooooon...............
Godson_Mansa
Hero Member
*****
Offline Offline

Activity: 616
Merit: 503


@Mansa_Godson


View Profile
April 07, 2016, 08:55:45 PM
 #523

i would guess you were trying to encourage big wallets to run masternodes instead of staking.

http://MutualCapitalCrypto.com

Bitrated user: AltcoinGodson.
cryptofanus79
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
April 07, 2016, 10:04:07 PM
 #524

CONGRATS DEV..  congrats owners ,,
from spain we wish you a fantastic coin fest ...have a nice english breakfast in our honour,,
MOJOCOIN , is the coin ,
EBK1000 (OP)
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


A Wound in Eternity


View Profile
April 07, 2016, 10:33:01 PM
 #525

i would guess you were trying to encourage big wallets to run masternodes instead of staking.

No, no, no hidden agendas, I just got home from work and we are looking at this stake issue now. I don't believe there are any security issues and we may just have to tweak the PoS a bit. If we can't finish the new wallet in the next 2-3 days we will try to get a fix out. Hang in there...

Soooooooon...............
cryptofanus79
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
April 07, 2016, 11:26:43 PM
 #526

i would guess you were trying to encourage big wallets to run masternodes instead of staking.

No, no, no hidden agendas, I just got home from work and we are looking at this stake issue now. I don't believe there are any security issues and we may just have to tweak the PoS a bit. If we can't finish the new wallet in the next 2-3 days we will try to get a fix out. Hang in there...
easy , we trust u
SiNeReiNZzz
Legendary
*
Offline Offline

Activity: 1022
Merit: 1043


αLPʜα αɴd ΩMeGa


View Profile WWW
April 07, 2016, 11:46:44 PM
 #527

i would guess you were trying to encourage big wallets to run masternodes instead of staking.

No, no, no hidden agendas, I just got home from work and we are looking at this stake issue now. I don't believe there are any security issues and we may just have to tweak the PoS a bit. If we can't finish the new wallet in the next 2-3 days we will try to get a fix out. Hang in there...


no problem ... I think you know what you have to do ... I trust there completely on your team and her developer skills and i will look forward for updates...

.
..........
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
█████████████░░██████████████████████████░░███████████████████
███████████████░░██████████████████████████░░█████████████████
█████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░███████████████
█████████████████░░░░░░░░░░██░░██░░░░░░░░░░██░░███████████████
███████████████████░░░░░░██░░██████░░░░░░██░░█████████████████
█████████████████████░░░░░░██████████░░░░░░███████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████

▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
.....I AM BLACKJACK.FUN.....
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
█████████████░░██████████████████████████░░███████████████████
███████████████░░██████████████████████████░░█████████████████
█████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░███████████████
█████████████████░░░░░░░░░░██░░██░░░░░░░░░░██░░███████████████
███████████████████░░░░░░██░░██████░░░░░░██░░█████████████████
█████████████████████░░░░░░██████████░░░░░░███████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████

▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
..........
SiNeReiNZzz
Legendary
*
Offline Offline

Activity: 1022
Merit: 1043


αLPʜα αɴd ΩMeGa


View Profile WWW
April 08, 2016, 01:10:47 AM
 #528

already climb up on Coinmarketcap.com to #132...  Grin

.
..........
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
█████████████░░██████████████████████████░░███████████████████
███████████████░░██████████████████████████░░█████████████████
█████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░███████████████
█████████████████░░░░░░░░░░██░░██░░░░░░░░░░██░░███████████████
███████████████████░░░░░░██░░██████░░░░░░██░░█████████████████
█████████████████████░░░░░░██████████░░░░░░███████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████

▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
.....I AM BLACKJACK.FUN.....
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
█████████████░░██████████████████████████░░███████████████████
███████████████░░██████████████████████████░░█████████████████
█████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░███████████████
█████████████████░░░░░░░░░░██░░██░░░░░░░░░░██░░███████████████
███████████████████░░░░░░██░░██████░░░░░░██░░█████████████████
█████████████████████░░░░░░██████████░░░░░░███████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████

▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
..........
axxo
Hero Member
*****
Offline Offline

Activity: 916
Merit: 500



View Profile
April 08, 2016, 01:37:29 AM
 #529

already climb up on Coinmarketcap.com to #132...  Grin

I'm very positive MOJO will be on top 100 soon.

▄░░▄█▄░░▄
▄▄█░░▄█▀█▄░░█▄▄
▄▄▄█▀▀░░░█▀░░░▀█░░░▀▀█▄▄▄
██▀░░░░░▄█▀░░░░▀█▄░░░░░▀██
██░░░░░▄█░░▄███▄░░█▄░░░░░██
██░░░░██░░▄█▀░▀█▄░░██░░░░██
██░░▄█▀░▄█▀░▄█▄░▀█▄░▀█▄░░██
██░██░░▄█▀░▄███▄░▀█▄░░██░██
███▀░░▄█░░▄█████▄░░█▄░░▀███
██▀░▄█▀░░▄███████▄░░▀█▄░▀██
▀█▀░░▄█████████▄░░▀█▀
▀▀█████████▀▀
▀▀█▀▀



▄▄▄▄▄
▐██▀██
██▌░██
▐██░░██
██▌░░██
███████
▀▀░░░▀▀



░▄▄▄▄▄
██▀▀▀██
██░░░▀▀
████
██
██
▀▀



░▄▄▄▄▄
██▀▀▀██
██░░░▀▀
████
██
██
▀▀



▄▄▄▄▄▄
▀▀██▀▀
██
██
██
▄▄██▄▄
▀▀▀▀▀▀



▄▄▄▄▄▄▄
██▀▀▀██
██
██
██
██
▀▀



▄▄▄▄▄▄
██▀▀▀██
██░░░██
▀██████
██▀██
██▀░██
▀▀▀░░▀▀



▄▄░░░▄▄
██░░░██
██░░░██
██░░░██
██░░░██
██▄▄▄██
▀▀▀▀▀



▄▄░░░▄▄
███░███
███████
██▀█▀██
██░░░██
██░░░██
▀▀░░░▀▀
.








▄▄▄███████▄▄▄
▄▄█████████████████▄▄
▄███████████████████████▄
███████████████████████████
█████████████████████████████
.
█████████████████████████████
███████████████████████████
▀███████████████████████▀
▀▀█████████████████▀▀
▀▀▀███████▀▀▀
▄███████████████████████████▄
█████████████████████████████
█████████████████████████████
██████▀█████████▀▀▀▀█▀███████
██████▌░▀▀████▀░░░░░░░▄██████
██████▀░░░░░░░░░░░░░░▐███████
███████▄░░░░░░░░░░░░░████████
███████▄░░░░░░░░░░░▄█████████
██████▀▀▀░░░░░░░▄▄███████████

████████▄▄▄▄▄▄███████████████
█████████████████████████████

█████████████████████████████
▀███████████████████████████▀
▄███████████████████████████▄
█████████████████████████████
█████████████████████████████
███████████████████▀▀▀███████
█████████████▀▀▀░░▄░░▐███████
███████▀▀▀░░░░▄▄▀▀░░░████████
█████▄▄▄░░▄▄█▀▀░░░░░▐████████
█████████▌▐▀░░░░░░░░█████████
██████████▄░▄█▄▄░░░▐█████████

██████████████████▄██████████
█████████████████████████████

█████████████████████████████
▀███████████████████████████▀
sabana
Newbie
*
Offline Offline

Activity: 24
Merit: 0


View Profile
April 08, 2016, 02:07:52 AM
 #530

Coinwallet.co Website

Quote
We are just doing some work to the website

Back shortly...

Sorry for any inconvenience caused

Check out our Twitter feed for updates.
nubbins7
Sr. Member
****
Offline Offline

Activity: 566
Merit: 250



View Profile
April 08, 2016, 02:40:37 AM
 #531

MOJO seems like a good coin i am not invested in many coins these days
but MOJO is worth some investment. Smiley
sabana
Newbie
*
Offline Offline

Activity: 24
Merit: 0


View Profile
April 08, 2016, 04:10:37 AM
 #532

tweet from coinwalletco : We are investigating a security incident. Please be patient while we assess the situation. All coins are safe!

I hope they can fix it asap. I have more than 10K Mojo at coinwallet
SiNeReiNZzz
Legendary
*
Offline Offline

Activity: 1022
Merit: 1043


αLPʜα αɴd ΩMeGa


View Profile WWW
April 08, 2016, 05:12:35 AM
 #533

tweet from coinwalletco : We are investigating a security incident. Please be patient while we assess the situation. All coins are safe!

I hope they can fix it asap. I have more than 10K Mojo at coinwallet

Oh lets Hope it isnt a bigger Problem!

but fortunately I have stored no more coins there! I find the Withdrawal fees are extremely expensive and also you can do much better mining in your own wallet, I think...

.
..........
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
█████████████░░██████████████████████████░░███████████████████
███████████████░░██████████████████████████░░█████████████████
█████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░███████████████
█████████████████░░░░░░░░░░██░░██░░░░░░░░░░██░░███████████████
███████████████████░░░░░░██░░██████░░░░░░██░░█████████████████
█████████████████████░░░░░░██████████░░░░░░███████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████

▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
.....I AM BLACKJACK.FUN.....
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
█████████████░░██████████████████████████░░███████████████████
███████████████░░██████████████████████████░░█████████████████
█████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░███████████████
█████████████████░░░░░░░░░░██░░██░░░░░░░░░░██░░███████████████
███████████████████░░░░░░██░░██████░░░░░░██░░█████████████████
█████████████████████░░░░░░██████████░░░░░░███████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████

▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
.
..........
EBK1000 (OP)
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


A Wound in Eternity


View Profile
April 08, 2016, 06:51:16 AM
 #534

UPDATE ON THE STAKE ISSUE

We are investigating the issue with the stake reward for larger balances and will have a fuller update tomorrow. It is possible that any changes to the PoS settings will require a hard-fork or at the very least a mandatory update for all. We will determine this. If we need to hard-fork to update / adjust the PoS system it appears sensible to wait for a few days and get the code adjusted in the new code base and then get the new wallets out instead of an interim solution. In the meantime and if this issue appears to be relevant to you, then try to stake over a few addresses with smaller balances. This should amount to the same. We don't believe that the network is affected and this is not a security issue so there is no need to be concerned. When we get this sorted and we are on the new wallets we can consider some compensation if you think you are affected by this. We don't want anyone to loose out. We will try to set a fixed date for the wallet update by tomorrow.

Have a good day and if you are anywhere near Manchester then go to CoinFestUK 2016:



We have prepared 100 MOJOcoin scratch cards with some random MOJO balances for attendees so we get more spread and the word out:



Have a good day  Smiley

Soooooooon...............
HmmMAA
Hero Member
*****
Offline Offline

Activity: 1111
Merit: 584



View Profile
April 08, 2016, 07:28:13 AM
 #535

UPDATE ON THE STAKE ISSUE

We are investigating the issue with the stake reward for larger balances and will have a fuller update tomorrow. It is possible that any changes to the PoS settings will require a hard-fork or at the very least a mandatory update for all. We will determine this. If we need to hard-fork to update / adjust the PoS system it appears sensible to wait for a few days and get the code adjusted in the new code base and then get the new wallets out instead of an interim solution. In the meantime and if this issue appears to be relevant to you, then try to stake over a few addresses with smaller balances. This should amount to the same. We don't believe that the network is affected and this is not a security issue so there is no need to be concerned. When we get this sorted and we are on the new wallets we can consider some compensation if you think you are affected by this. We don't want anyone to loose out. We will try to set a fixed date for the wallet update by tomorrow.

Have a good day and if you are anywhere near Manchester then go to CoinFestUK 2016:



We have prepared 100 MOJOcoin scratch cards with some random MOJO balances for attendees so we get more spread and the word out:



Have a good day  Smiley

I really like the scratch card idea . Dedicated dev so far . Keep up the good work .

"It is hard to imagine a more stupid or more dangerous way of making decisions than by putting those decisions in the hands of people who pay no price for being wrong." Thomas Sowell
CryptoHobo
Legendary
*
Offline Offline

Activity: 1050
Merit: 1000



View Profile
April 08, 2016, 07:52:32 AM
 #536

...

I really like the scratch card idea . Dedicated dev so far . Keep up the good work .

good isn't it, shame my a.hole boss wouldn't let me have the time off for coinfest  Sad
or 4/20 ... hes a git
CryptoHobo
Legendary
*
Offline Offline

Activity: 1050
Merit: 1000



View Profile
April 08, 2016, 08:14:34 AM
 #537

fyi coinwallet.co is closing shortly remove your coins

https://www.coinwallet.co/closing
sabana
Newbie
*
Offline Offline

Activity: 24
Merit: 0


View Profile
April 08, 2016, 08:24:57 AM
 #538

fyi coinwallet.co is closing shortly remove your coins

https://www.coinwallet.co/closing

I am not happy with this situation. The should change WD fee to ZERO
EBK1000 (OP)
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


A Wound in Eternity


View Profile
April 08, 2016, 08:25:25 AM
 #539

fyi coinwallet.co is closing shortly remove your coins

https://www.coinwallet.co/closing

Thats a shame. We have been considering to set up a web staking wallet for Mojo, maybe now is the time to do that...

Soooooooon...............
mikhael
Sr. Member
****
Offline Offline

Activity: 317
Merit: 317


View Profile
April 08, 2016, 08:39:13 AM
 #540

fyi coinwallet.co is closing shortly remove your coins

https://www.coinwallet.co/closing

Thats a shame. We have been considering to set up a web staking wallet for Mojo, maybe now is the time to do that...

Well, that's definitely a good idea.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 [27] 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 ... 133 »
  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!