Pages:
Author

Topic: [OSC]OpenSourcecoin Mandatory Update 7/1/14 - page 12. (Read 153272 times)

newbie
Activity: 22
Merit: 0
Hey,

Just added OSC to Hashnova Mining Pool for anyone that is interested.

https://pool.hashnova.com/pools/OpenSourceCoin/OSC/

Enjoy!

Cheers,
David
legendary
Activity: 1470
Merit: 1010
Join The Blockchain Revolution In Logistics
if I can get my OSC qt updated on all sync then why the HECK can't the leading wallet installer on planet Earth just can not figure it out?

there are at least 20 working just a-okay networks that team Cry just can't seem to get working.

Mullick PM me any time for a "How do I addnodes 101". Tongue

--------------
possible forum

http://qa.howproblemsolution.com/
full member
Activity: 168
Merit: 100
Hey firefly on the wall ... maybe you can get Mullick to update the OSC wallet if he ever gets FFC up? Please Please!

-------


last time i caught Mullick in cryptsy chat his reasoning for OSC was the wallet was very bloated, FFC his excuse was large blockchain and very few nodes.  this however was almost a month ago, his reasons very well may have changed since then.
legendary
Activity: 1470
Merit: 1010
Join The Blockchain Revolution In Logistics
coin is being transferred to new leadership, and it will be for the best. i simply don't have the time to dedicate to the project. hopefully the new dev's can pick up where i left off with lobbying the Open Source Foundation for recognition.

lol
old dev is around more than new dev

"leadership" operative word lacking operator
legendary
Activity: 1470
Merit: 1010
Join The Blockchain Revolution In Logistics
@efjay

website is on the list
but I think OPEN would be best served to utilize free tools first

road map is this
1. Fund open source coders and crowd fund open source projects (so a mix of kickstarter and github)
2. Provide currated lists of open source educational tools and resources
3. see FLO
4. (maybe) FORK to a more modern SHA256 POS/POW see T3k, UNIT, GHC

newbie
Activity: 13
Merit: 1
@efjay
yes most older chains (lol +1 year coins are Sr. already)  take some time to download the chain.  and OSC client is slow to load the blockchain.  but it does work.


No probs, next transaction was in my wallet much faster. 

Are you still working on a web site, roadmap and future for OSC / Ocoin?  I'd like to see where it's going Smiley

Cheers
legendary
Activity: 1470
Merit: 1010
Join The Blockchain Revolution In Logistics
@efjay
yes most older chains (lol +1 year coins are Sr. already)  take some time to download the chain.  and OSC client is slow to load the blockchain.  but it does work.

CASE USE of OPEN
https://corona.info/
Dapp Network
Fund coders and entrepreneurs and provide them with educational tools and resources




https://github.com/Open-Source-Coins

http://listofaltcoins.com/index.php/Main_Page

https://github.com/ray77/einsteinium
newbie
Activity: 13
Merit: 1
Transaction I made (from a pool) approx 60 mins before posting here has not shown up.

In case anyone reads the above message, appears the network is just slow in processing transactions.  This has since gone through and had enough confirmations also.

Cheers
newbie
Activity: 13
Merit: 1
Hi there,

Does any one have a Windows wallet that works?

I've tried the OSCinstaller.exe that seems to be available (.exe is 2.0.0.32 version).  Wallet v0.1.1.1-g99999-r1 from About page in Windows QT version seems to sync with current blocks.

Transaction I made (from a pool) approx 60 mins before posting here has not shown up.

How do I find out what is going on?

If my transaction doesn't make its way to my wallet, is there anything I can do to get it back?

Thanks
sr. member
Activity: 1050
Merit: 377
Got a modest position in OScoin, but is there justification?  I see no dev, how about support?  Should I just say good-bye?  Opinions? FFC still seems somewhat alive, can the same be said for OScoin?  Or are they both dead?
legendary
Activity: 1470
Merit: 1010
Join The Blockchain Revolution In Logistics
Hey firefly on the wall ... maybe you can get Mullick to update the OSC wallet if he ever gets FFC up? Please Please!

-------
Anonymart: Sell Anything, Securely and Anonymously
http://anonymart.github.io/

GoUrl Monetiser :: allows you to sell [data] Music & Texts & Urls & Images & Video & Files online for cryptocoins -
https://gourl.io/view/newurl/Cryptocoin_Monetiser_UNO_Online.html
(make open source version)
legendary
Activity: 1140
Merit: 1000
The Real Jude Austin
What a total scam coin!  Grin
legendary
Activity: 1470
Merit: 1010
Join The Blockchain Revolution In Logistics
random info on distributed systems possibilities

1) MARKETNODES - to open a new market on the blockchain requires 10,000 CRAVE ($4100)
*open only to high ranking masternodes

2) MASTERNODES -  A masternode requires 500 CRAVE ($210)
*vetted

3) WORKERNODES - require ($10)
*unvetted

4) TRUSTEENODES - require personal identity being public ... aka known real people

hero member
Activity: 686
Merit: 504
always the student, never the master.
Assuming the compiler hasn't optimized away any of this code

Code:
int64 GetProofOfWorkReward(int nHeight, int64 nFees, uint256 prevHash)
{

    static const int64 nMinimumCoin = 0.0777 * COIN;

    int64 nSubsidy = 0.0777 * COIN;                                                                         //genesis

    if (nHeight > 0 && nHeight < 7) {nSubsidy = 0 * COIN;}                                                // zero
    else if (nHeight == 7) {nSubsidy = 177777 * COIN;}                                                   // Premine
    else if (nHeight > 7 && nHeight < 1000) {nSubsidy = 2.5 * COIN;}                                   // IRC Launch
    else if (nHeight > 1000 && nHeight < 1337) {nSubsidy = 0.0777 * COIN;}                            // low instamine official launch
    else if (nHeight == 1337) {nSubsidy = 1337 * COIN;}                                               //L33T
    else if (nHeight > 1337 && nHeight < 4000) {nSubsidy = 1 * COIN;}                                //final launch period
    else if (nHeight > 4000 && nHeight < 8000) {nSubsidy = 22.5 * COIN;}                            // 22.5 coin
    else if (nHeight > 8000 && nHeight < 16000) {nSubsidy = 15 * COIN;}                            // 15 coins per block
    else if (nHeight > 16000 && nHeight < 32000) {nSubsidy = 7.5 * COIN;}                         // 7.5 coins per block
    else if (nHeight > 32000 && nHeight < 64000) {nSubsidy = 6 * COIN;}                          // 6 coins per block
    else if (nHeight > 64000 && nHeight < 77777) {nSubsidy = 4 * COIN;}                         // 4 coins
    else if (nHeight == 77777) {nSubsidy = 10000 * COIN;}                                      // bonus reward
    else if (nHeight > 77777 && nHeight < 128000) {nSubsidy = 4 * COIN;}                      // 4 coins
    else if (nHeight > 128000 && nHeight < 256000) {nSubsidy = 20 * COIN;}                    // 20 coins
    else if (nHeight > 256000) {nSubsidy = 25 * COIN;}                 // 25 coins
    else if (nHeight > 2400000) {nSubsidy = 5 * COIN;}
    else {nSubsidy = 1 * COIN;}              

    //at this point, nSubsidy is some number that was defined in the above looping structure
    nSubsidy >>= (nHeight / 400000);
    //bitshift nSubsiby n places to the right, where n = nHeight / 40000
    //fancy way of saying nSubsidy = nSubsidy / (nHeight / 40000)


    //now if nSubsiby < nMininumCoin, nSubsidy = nMinimumcon;
    if (nSubsidy < nMinimumCoin)
    {
         nSubsidy = nMinimumCoin;
    }

    return nSubsidy + nFees;
}

400   12.5
800   6.25
1200 3.125
1600 1.5625
2000 1
2400 2.5
2800 1.25
3200 1
legendary
Activity: 1470
Merit: 1010
Join The Blockchain Revolution In Logistics
Genesis Block Created    
Tuesday, September 10, 2013 02:01:53 GMT


{3600000}else if (nHeight > 0256000&& nHeight < 0400000) {nSubsidy = 25.0 * COIN;}                       R// 25.00    coins per block <{5000000}else if (nHeight > 0400001&& nHeight < 0800000) {nSubsidy = 12.5 * COIN;}                       R// 12.5      coins per block << soon
{2500000}else if (nHeight > 0800001&& nHeight < 1200000) {nSubsidy = 06.25 * COIN;}                     R// 06.25    coins per block
{6000000}else if (nHeight > 1200001&& nHeight < 2400000) {nSubsidy = 5 * COIN;}                            R// 05.00    coins per block

TOTAL =20.5 million (approx.)

   {0000000}else {nSubsidy = 1 * COIN;}                             R// 01 coins per block == 175200/yr[/sup]


commentary NOT actual code


now @ BLOCK 815,085
r=6.25 /  BLOCK (http://www.coinwarz.com/cryptocurrency/coins/opensourcecoin)

This reward runs until BLOCK 1.200.000?
Then it goes r=5?  until BLOCK 2.400.000?  

Starting @ BLOCK 2.400.001 r=1 forever?

or is it this

 
      SPECIFICATIONS

    Algorithm: Sha256 POW/POS**
    TX Message Feature
    PPCoin Checkpointing System
    Total Coins: 21 million
    19.8 million coins by Year 8
    Subsidy: .0777 - 25 coins
    Halving: 400,000 blocks
    Minimum Subsidy: .0777
    Block Times: 1 minute
    Symmetrically Scaling Difficulty Retarget Algorithm(SSDRA) without Rollback
    UPNP


So to answer your question, yes unless i made some error in this code it will drop to 12.5 @ 400k blocks and will continue to half until block 2,400,000 where the reward will bump back up to 5 and continue halfing until it reaches the minimum subsidy. any block that doesn't fall into the rules above will fall back to a reward of 1 coin.

r=12.5/  BLOCK until BLOCK 800.000 
r=6.25 /  BLOCK until BLOCK 1.200.000
r=3.125/  BLOCK until BLOCK 1.600.000
r=1.55ish/  BLOCK until BLOCK 2.000.000
r=0.77ish/  BLOCK until BLOCK 2.400.000
r=5.0/  BLOCK until BLOCK 2.800.000
r=2.5/  BLOCK until BLOCK 3.200.000
r=1.25/  BLOCK until BLOCK 3.600.000
r=1/ BLOCK after 4.000.000 SUSTAIN FOREVER
hero member
Activity: 686
Merit: 504
always the student, never the master.
Looks like we ended up on the wrong side of the chain but still have 8 peers. Do Ispace or Comkort have some peers we could use?

Whats the latest word here? Are you still out of sync?
legendary
Activity: 1064
Merit: 1002
Looks like we ended up on the wrong side of the chain but still have 8 peers. Do Ispace or Comkort have some peers we could use?
legendary
Activity: 966
Merit: 1000
Nice logo
legendary
Activity: 1470
Merit: 1010
Join The Blockchain Revolution In Logistics

logo candidates
Pages:
Jump to: