Bitcoin Forum
May 06, 2024, 05:08:45 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 [150] 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 »
  Print  
Author Topic: [ANN][OC] Orangecoin ★★ POS ★★ Anon Transactions ★★ Masternodes  (Read 209473 times)
Halofire
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000


@halofirebtc


View Profile
April 27, 2015, 04:24:57 PM
 #2981

Will there be cake and punch? or Orange juice!? Cheesy

How have you been, my friend?


Everything all right- I changed from coins into internet marketing. At JVzoo it is a little bit like on a coin exchage, but you have almost 30 days money back guarantee;-)

And you still keep on mining?

My ASIC is shot, burnt it up. I'm back to mining with gpu's, for one particular coin. Once I hit my goal, I'm probably done mining for a while until I can get a farm of gpus.

OC Development - oZwWbQwz6LAkDLa2pHsEH8WSD2Y3LsTgFt
SMC Development - SgpYdoVz946nLBF2hF3PYCVQYnuYDeQTGu
Friendly reminder: Back up your wallet.dat files!!
"There should not be any signed int. If you've found a signed int somewhere, please tell me (within the next 25 years please) and I'll change it to unsigned int." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714972125
Hero Member
*
Offline Offline

Posts: 1714972125

View Profile Personal Message (Offline)

Ignore
1714972125
Reply with quote  #2

1714972125
Report to moderator
1714972125
Hero Member
*
Offline Offline

Posts: 1714972125

View Profile Personal Message (Offline)

Ignore
1714972125
Reply with quote  #2

1714972125
Report to moderator
Halofire
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000


@halofirebtc


View Profile
April 27, 2015, 04:32:00 PM
 #2982

anybody getting this error this just started happening.


WARNING: Checkpoint is too old. Wait for block chain to download, or notify developers of the issue.


I am guessing it has to do with OC being 1 year old, but I really don't know. I'm still staking so it's ok?? I'm really not sure. Leave your wallets online until we get a fix. I know other ppl have this message, too.

It's only minor problem right now. Checkpoints are needed for the network to agree on the blockchain, for forks. But it's time to get a dev over here.


I quote from this reddit: http://www.reddit.com/r/blackcoin/comments/32k0u4/what_is_latest_status_of_pos_and_checkpoints_topic/

"the purpose of broadcast checkpoint is to defend against double spending when the proof-of-stake security is still not strong enough, or when certain bugs enables such attacks"

OC Development - oZwWbQwz6LAkDLa2pHsEH8WSD2Y3LsTgFt
SMC Development - SgpYdoVz946nLBF2hF3PYCVQYnuYDeQTGu
Friendly reminder: Back up your wallet.dat files!!
salsero
Member
**
Offline Offline

Activity: 67
Merit: 10


View Profile
April 28, 2015, 08:37:54 PM
 #2983

Probably a simple fix, but then you know we have problem of no dev.
Halofire
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000


@halofirebtc


View Profile
April 28, 2015, 09:49:56 PM
 #2984

I did some asking around, our network is not vulnerable. Our difficulty is very strong when compared against a coin like TAG's PoS difficulty, granted they have PoW to pull out the forks. All explorers are matching when compared to the wallet. So since everything is fine, it's just a warning that we have an old checkpoint. I'm working on getting info to check the git to see if checkpoints are coded as a limited-time feature, or if it's destined to create another checkpoint.

OC Development - oZwWbQwz6LAkDLa2pHsEH8WSD2Y3LsTgFt
SMC Development - SgpYdoVz946nLBF2hF3PYCVQYnuYDeQTGu
Friendly reminder: Back up your wallet.dat files!!
salsero
Member
**
Offline Offline

Activity: 67
Merit: 10


View Profile
April 28, 2015, 11:24:02 PM
 #2985

Great!!  Thanks for looking into this.
Halofire
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000


@halofirebtc


View Profile
April 28, 2015, 11:46:40 PM
 #2986

I haven't had the chance to find out from our code what the deal is, BUT I was given a solution if our code is no longer good.
https://github.com/baldurodinsson/auroracoin-project/tree/master/src
Still requires a dev, but my friend told me:
"There was automatic checkpointing code put in.  Essentially, it added checkpoints without having to hard code them.  It's on a very old codebase, but you might be able to implement something like that on OC.  That would solve the issue in the long term, but a short term remedy would be hardcoding a checkpoint in the code and re-releasing wallets.  Either way, it will take some coding, but the checkpoint hardcode is much easier to do."

Old code base to me is fine to rip things from, checkpoints are pretty basic and probably wouldn't change often - to date.

Now, I'm not exactly sure what we'd need to change in this to make it fit OC, and I'm not sure what other files in the git have to change to accept the checkpoint coding.

I still need to have a deep look into the OC code to see what I can do/find about our current checkpoints. Until tomorrow, or later tonight folks.

OC Development - oZwWbQwz6LAkDLa2pHsEH8WSD2Y3LsTgFt
SMC Development - SgpYdoVz946nLBF2hF3PYCVQYnuYDeQTGu
Friendly reminder: Back up your wallet.dat files!!
Halofire
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000


@halofirebtc


View Profile
April 29, 2015, 05:58:10 AM
 #2987

Alright, digging in the git provided me with this:

Code:
if (Checkpoints::IsSyncCheckpointTooOld(60 * 60 * 24 * 365) && !fTestNet && !IsInitialBlockDownload())
    {
        nPriority = 100;
        strStatusBar = "WARNING: Checkpoint is too old. Wait for block chain to download, or notify developers."


This tells me that for whatever reason, it's one year time limit that had to elapse for this error message to display. On what grounds? Idk yet.

Here's the definition for "IsSyncCheckpointTooOld":    

Code:
bool IsSyncCheckpointTooOld(unsigned int nSeconds)
    {
        LOCK(cs_hashSyncCheckpoint);
        // sync-checkpoint should always be accepted block
        assert(mapBlockIndex.count(hashSyncCheckpoint));
        const CBlockIndex* pindexSync = mapBlockIndex[hashSyncCheckpoint];
        return (pindexSync->GetBlockTime() + nSeconds < GetAdjustedTime());
    }

Seems that's it's still based on the time elapsed. This is where I start to lose my grip on code. I can't go any farther with this without looking up the commands and directives in a c++ "dictionary".

But GOOD news! If it's taken a year to fulfill this, then it's not due to a lack in securiy via PoS difficulty. I'm guessing that OCdev intended for the network to be strong enough by now that we wouldn't need checkpoints. Checkpoints are NOT a necessity, but are helpful when syncing or if there are forks. No worries. Press on. New dev will be alerted to this to provide a fix, but my opinion: it's nothing to worry about for now.

OC Development - oZwWbQwz6LAkDLa2pHsEH8WSD2Y3LsTgFt
SMC Development - SgpYdoVz946nLBF2hF3PYCVQYnuYDeQTGu
Friendly reminder: Back up your wallet.dat files!!
Halofire
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000


@halofirebtc


View Profile
May 09, 2015, 04:38:48 AM
Last edit: May 09, 2015, 05:47:45 PM by Halofire
 #2988

CF: 226118.097952

Edit: By the way I re-named the fund.

OC Development - oZwWbQwz6LAkDLa2pHsEH8WSD2Y3LsTgFt
SMC Development - SgpYdoVz946nLBF2hF3PYCVQYnuYDeQTGu
Friendly reminder: Back up your wallet.dat files!!
ThisTimeYes
Newbie
*
Offline Offline

Activity: 49
Merit: 0


View Profile
May 11, 2015, 06:01:08 AM
 #2989

Can anyone give some guidance on how to synch with the network?  I am on a Mac and have been having trouble getting my client to synch and don't really know where to start.  Do I have to add the .conf file somewhere?  Thanks, any advice would be appreciated.
Halofire
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000


@halofirebtc


View Profile
May 12, 2015, 05:36:04 PM
 #2990

Hi, I'm not sure where your "Roaming folder" equivalent would be, I'm a windows user. If you google search, you can find out where you can find your wallet.dat file is located and that's where your .conf should go.

Quick search results:
https://bitcointalk.org/index.php?topic=36542.0
http://bitcoin.stackexchange.com/questions/1350/where-is-bitcoin-information-wallet-dat-stored-on-os-x


Here's my .conf

addnode=54.235.70.55:18872
addnode=54.235.244.167:18872
addnode=167.114.27.243:18872
addnode=92.222.24.66:18872
addnode=1.34.180.245:18872
addnode=213.162.108.2:18872
addnode=73.33.254.6:18872
addnode=88.102.206.204:18872

OC Development - oZwWbQwz6LAkDLa2pHsEH8WSD2Y3LsTgFt
SMC Development - SgpYdoVz946nLBF2hF3PYCVQYnuYDeQTGu
Friendly reminder: Back up your wallet.dat files!!
bhokor
Legendary
*
Offline Offline

Activity: 966
Merit: 1000


View Profile
May 12, 2015, 06:05:38 PM
 #2991

hi, can someone tell me which algo use this coin?

thanks
Halofire
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000


@halofirebtc


View Profile
May 12, 2015, 06:56:16 PM
 #2992

hi, can someone tell me which algo use this coin?

thanks

OC is a 100% PoS coin.

OC Development - oZwWbQwz6LAkDLa2pHsEH8WSD2Y3LsTgFt
SMC Development - SgpYdoVz946nLBF2hF3PYCVQYnuYDeQTGu
Friendly reminder: Back up your wallet.dat files!!
fartbags
Legendary
*
Offline Offline

Activity: 1190
Merit: 1004


View Profile
May 13, 2015, 03:56:38 AM
 #2993

price has slowly been rising last months.

Halofire
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000


@halofirebtc


View Profile
May 13, 2015, 05:14:29 AM
 #2994

Yeah, 6 month chart looks good too.

OC Development - oZwWbQwz6LAkDLa2pHsEH8WSD2Y3LsTgFt
SMC Development - SgpYdoVz946nLBF2hF3PYCVQYnuYDeQTGu
Friendly reminder: Back up your wallet.dat files!!
Halofire
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000


@halofirebtc


View Profile
May 14, 2015, 05:30:12 PM
Last edit: June 09, 2015, 05:48:50 PM by Halofire
 #2995

http://www.mediafire.com/download/pu22a0w4ok8i2j9/OrangeCoin.7z

This link contains 217k blocks of the blockchain for Windows, not sure if it will work for Mac.
Once downloaded, it contains an Orangecoin folder with 8 items in it:
Database Folder -- contains one file: log.0000000046
Orangecoin.conf -- only has addnodes, to get people connected & syncing
blk0001.dat
blkindex.dat
peers.dat
debug.log
.lock
db.log



Extract contents to a folder using 7zip or other compatible "zip" programs. In your Orangecoin folder (located in your roaming folder), save your wallet.dat file but delete everything else and copy the contents of the extracted zip file into your Orangecoin folder. Launch your wallet.

I have checked it on my own computer, but I'd like someone to please verify this works, virus scan too if you'd like.



OC Development - oZwWbQwz6LAkDLa2pHsEH8WSD2Y3LsTgFt
SMC Development - SgpYdoVz946nLBF2hF3PYCVQYnuYDeQTGu
Friendly reminder: Back up your wallet.dat files!!
fartbags
Legendary
*
Offline Offline

Activity: 1190
Merit: 1004


View Profile
May 15, 2015, 06:58:14 PM
 #2996



OC 4TW

fartbags
Legendary
*
Offline Offline

Activity: 1190
Merit: 1004


View Profile
May 15, 2015, 06:58:54 PM
 #2997

http://www.mediafire.com/download/pu22a0w4ok8i2j9/OrangeCoin.7z

This link contains 217k blocks of the blockchain for Windows, not sure if it will work for Mac.
Once downloaded, it contains an Orangecoin folder with 8 items in it:
Database Folder -- contains one file: log.0000000046
Orangecoin.conf -- only has addnodes, to get people connected & syncing
blk0001.dat
blkindex.dat
peers.dat
debug.log
.lock
db.log



Extract contents to a folder using 7zip or other compatible "zip" programs. In your roaming folder, save your wallet.dat file but delete everything else and copy the contents of the extracted zip file into your roaming folder. Launch your wallet.

I have checked it on my own computer, but I'd like someone to please verify this works, virus scan too if you'd like.




You're a hero member now @Halofire

Good job.


Halofire
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000


@halofirebtc


View Profile
May 15, 2015, 07:09:13 PM
 #2998

http://www.mediafire.com/download/pu22a0w4ok8i2j9/OrangeCoin.7z

This link contains 217k blocks of the blockchain for Windows, not sure if it will work for Mac.
Once downloaded, it contains an Orangecoin folder with 8 items in it:
Database Folder -- contains one file: log.0000000046
Orangecoin.conf -- only has addnodes, to get people connected & syncing
blk0001.dat
blkindex.dat
peers.dat
debug.log
.lock
db.log



Extract contents to a folder using 7zip or other compatible "zip" programs. In your roaming folder, save your wallet.dat file but delete everything else and copy the contents of the extracted zip file into your roaming folder. Launch your wallet.

I have checked it on my own computer, but I'd like someone to please verify this works, virus scan too if you'd like.




You're a hero member now @Halofire

Good job.



Thanks, fartbags Smiley



OC Development - oZwWbQwz6LAkDLa2pHsEH8WSD2Y3LsTgFt
SMC Development - SgpYdoVz946nLBF2hF3PYCVQYnuYDeQTGu
Friendly reminder: Back up your wallet.dat files!!
CryptoJohn
Legendary
*
Offline Offline

Activity: 1680
Merit: 1003


Well, That's Crypto :-\


View Profile
May 15, 2015, 07:38:05 PM
 #2999

how long has the coin site been down and who is taking on the role to get it back up?
Halofire
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1000


@halofirebtc


View Profile
May 15, 2015, 08:05:50 PM
 #3000

how long has the coin site been down and who is taking on the role to get it back up?

The coin site has been down for a while, few months. Exact date is unknown. We have been searching for reliable talent. I have looked into providing a new site that could provide hard-coded seed nodes a while back but it's a task that I have no experience in and would be starting from scratch. I'm still here providing what technical and community support I can.

Cheers! Smiley

OC Development - oZwWbQwz6LAkDLa2pHsEH8WSD2Y3LsTgFt
SMC Development - SgpYdoVz946nLBF2hF3PYCVQYnuYDeQTGu
Friendly reminder: Back up your wallet.dat files!!
Pages: « 1 ... 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 [150] 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 »
  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!