Pages:
Author

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

hero member
Activity: 686
Merit: 504
always the student, never the master.
September 10, 2013, 11:08:18 PM
#93
great thanks. If i can get it going I'll have a wee shot at mining it Smiley

ok, after a brief look through the source its just standard debug stuff. you can do a find and replace using a text editor and replace
Quote
Ocoin
with
Quote
ocoin(all lowercase)
and it should compile just fine.
hero member
Activity: 615
Merit: 500
September 10, 2013, 10:50:42 PM
#92
great thanks. If i can get it going I'll have a wee shot at mining it Smiley
hero member
Activity: 686
Merit: 504
always the student, never the master.
September 10, 2013, 10:39:09 PM
#91
Hi this doesn't compile for me on linux. I'm getting a "fatal error: Ocoingui.h: No such file or directory" I also had to rename the icons in res/icons with an upper case O

Anyone else got this compiled on Linux?

Also what's the rpcport for the conf?

Cheers


@linux issue. let me look at the source and see what i can determine.

@rpcport. default rpc port is 38532, however in the windows installer the pregenerated conf file sets it to 80 assuming that noobs will not be able to open non standard ports in their router.
hero member
Activity: 615
Merit: 500
September 10, 2013, 10:26:14 PM
#90
Hi this doesn't compile for me on linux. I'm getting a "fatal error: Ocoingui.h: No such file or directory" I also had to rename the icons in res/icons with an upper case O

Anyone else got this compiled on Linux?

Also what's the rpcport for the conf?

Cheers
hero member
Activity: 686
Merit: 504
always the student, never the master.
September 10, 2013, 08:01:48 PM
#89
updated remaining premine balance. there are still lots of bounties available. and there are still many more coins to be given away in the giveaway post.

there is another giveaway that has been started on cryptocointalk

https://cryptocointalk.com/topic/1182-ocoin-giveaway/


no active connections

Patently false.
full member
Activity: 135
Merit: 100
Business models change. Its the mindset that stays
September 10, 2013, 12:43:27 PM
#88
Solo mining works fine now:)
sr. member
Activity: 420
Merit: 250
September 10, 2013, 10:45:04 AM
#87
no active connections
sr. member
Activity: 420
Merit: 250
September 10, 2013, 10:20:21 AM
#86
can't sync
full member
Activity: 322
Merit: 113
Sinbad Mixer: Mix Your BTC Quickly
September 10, 2013, 10:09:25 AM
#85
Have found several blocks already, but giveaways and bounties are worth way way more than just mining at this point.
Maybe once we get past block 4000, it'll be much more worthwhile.
newbie
Activity: 18
Merit: 0
full member
Activity: 182
Merit: 100
fml
September 10, 2013, 09:28:22 AM
#83
We need a POOL!!!!
hero member
Activity: 686
Merit: 504
always the student, never the master.
September 10, 2013, 07:47:11 AM
#82
bump  Cheesy
hero member
Activity: 686
Merit: 504
always the student, never the master.
September 10, 2013, 03:10:12 AM
#81
legendary
Activity: 2268
Merit: 1092
September 10, 2013, 03:03:23 AM
#80
hero member
Activity: 686
Merit: 504
always the student, never the master.
September 10, 2013, 02:51:04 AM
#79
Lol, look at the dev. Enough said

hey, you misspelled Vircurex in your sigline.
legendary
Activity: 1008
Merit: 1022
September 10, 2013, 02:00:04 AM
#78
Lol, look at the dev. Enough said
hero member
Activity: 686
Merit: 504
always the student, never the master.
September 10, 2013, 01:57:17 AM
#77
i need some ideas for bounties. it has to be something useful for the coin. any thoughts?
hero member
Activity: 686
Merit: 504
always the student, never the master.
September 10, 2013, 01:02:22 AM
#76
sr. member
Activity: 588
Merit: 250
September 10, 2013, 12:58:37 AM
#75
Quote
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 = 3 * COIN;}                    // 3 coins
   else if (nHeight > 256000 && nHeight < 400000) {nSubsidy = 2.5 * COIN;}                 // 2.5 coins
   else {nSubsidy = 1 * COIN;}             

    // Subsidy is cut in half every 400 thousand blocks
    nSubsidy >>= (nHeight / 400000);
   
   // Minimum subsidy
    if (nSubsidy < nMinimumCoin)
    {
        nSubsidy = nMinimumCoin;
    }

    return nSubsidy + nFees;

this coding is a joke, like nSubsidy = (0.0777 * COIN; (does it compile?) nSubsidy = 0 * COIN; etc, will never work because of
   if (nSubsidy < nMinimumCoin)
    {
        nSubsidy = nMinimumCoin;
    }

also 177777 * COIN is huge compared to the average coins per block, no point to mine a coin like this...
newbie
Activity: 18
Merit: 0
September 10, 2013, 12:44:15 AM
#74
So japool isn't working? Or is it? I'm hashing on it right now, so let me know if I should quit Smiley

Nevermind, I was on my fallback.
Pages:
Jump to: