Bitcoin Forum
May 25, 2024, 01:11:18 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
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 ... 84 »
181  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]New Coin MouseCoin ,yep,i m Jerry ! on: October 16, 2017, 06:37:23 AM
It is not possible to stake this coin past 900 trillion on a single wallet. The balance becomes negative and the only fix is to send coins to a different wallet.

issue is when the input is too large/too old.
so you could split coins in multiple addresses, inputs on different addresses will not combine.

it's an interesting issue,
i've created a thread to discuss it here
https://bitcointalk.org/index.php?topic=2275380.new#new
182  Alternate cryptocurrencies / Altcoin Discussion / Fixing negative rewards with high staking coins. on: October 16, 2017, 06:20:02 AM
So it seems that Hi-POS has revealed another limit to generic coin code.

When uint64 nCoinAge becomes too large, it can cause int64 nSubsidy to overflow into a negative value, then because negative rewards are generally not accepteed, this prevents that input from ever staking.
(nCoinAge being unsigned, and nSubsidy being signed)

the basic, and truncated, code in question is
Code:
bool CTransaction::GetCoinAge(CTxDB& txdb, uint64_t& nCoinAge) const
{
    CBigNum bnCentSecond = 0;  // coin age in the unit of cent-seconds
    nCoinAge = 0;

        int64_t nValueIn = txPrev.vout[txin.prevout.n].nValue;
        bnCentSecond += CBigNum(nValueIn) * (nTime-txPrev.nTime) / CENT;

    CBigNum bnCoinDay = bnCentSecond * CENT / COIN / (24 * 60 * 60);

    nCoinAge = bnCoinDay.getuint64();
}

Code:
static const int64_t COIN_YEAR_REWARD = 1000 * CENT;


int64_t GetProofOfStakeReward(int nHeight, int64_t nCoinAge, int64_t nFees)
{
    int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8);

    return nSubsidy + nFees;
}



I'm pondering different options to "fix" this.

1. modify nCoinAge
- it were based on CoinYear rather than CoinDay, the possibility would be diminished but would still exist.
- if it were given an upper limit then it would be possible for nSubsidy to never exceed upper limit of being int64.


2. modify nSubsidy
- ignoring the -ve and getting absolute value as is , not sure of correct usage but something along lines of
Code:
    int64_t nSubsidy = abs(nCoinAge * COIN_YEAR_REWARD * 33 / (365 * 33 + 8));
- i cant think of any reason why it needs to be signed ? so converting to uint64, would never have a -ve return, and overflows would just be ignored
- does it even need to be uint64? give it more bits? eg converting to CBigNum which is 256 bit?




.

another variable of interest in this is MAX_MONEY, as it defines maximum possible size of input, it then sets some idea where nCoinAge becomes an issue
maximum value of int64 / MAX_MONEY = age at which larges possible input will cause problems

Code:
static const int64_t MAX_MONEY = 700000000 * COIN;


.

other possibilities include auto splitting the input if it is obviously an issue.
when nCoinAge of the input exceeds some value, then split it.

this would be interesting because it's only a client update, where the others seem to requiring forks.
183  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] StrongHands - Hybrid PoS/PoW Min Stake - 30 days [Now on Cryptsy] on: October 15, 2017, 02:58:13 PM
Hello, I have had a wallet crash and wallet will not boot!
My backup doesn't have full balance, coins are missing.
Is there anyone that can help me?


A fatal error occured. Stronghands can no longer continue safely and will quit.

EXCEPTION: St13runtime_error
CWallet:GetCredit():value out of range
C:\Users\diehard\Downloads\stronghands-v0141\stronghands-v0141.exe in
Runaway exception

the problem is the transaction limit is over the code limit, means the client will keep bugging out.
hmmz. i built a wallet you can use to recover your coinz, but it's somewhere embedded in this thread ...

..
obviously things have moved on,
but this wallet (and many others - it's a problem even in PPC, but most coins do not have people sending 1billion coins at once),
has a bug where sending > 1billion coins can/maybe bug yr wallet out

i made a fix, it will only allow you to send less than 1 billion
https://github.com/bumbacoin/stronghands/releases   <<< use this wallet


EDIT:
oh how strange, you're using v141 already
can you tell me exactly what you did? how many coins you tried to send?

you can get transaction information from the wallet below whilst it is open,
obv v141 is still flawed somehow, so that inof might help fix it


....

this other different special wallet should help you in your dilemna, https://drive.google.com/open?id=0B5j8d4FSc7drXzQ5ZURJdE9yNEU

basic steps.
back shit up, <<<<< !!! *****
open this "IncreaseMaxMoney" wallet, DO NOT SEND ANY COINS OR ANYTHING INTERESTING
dump your private keys for any addresses with funds,

please, copy transaction id for the offending transaction,
go into your debug console and get the full details by entering your txid in
enter
gettransaction <transactionid>
then PM me those infos Smiley

close new "IncreaseMaxMoney" wallet,

remove wallet.dat from your stronghands datadirectory,
restart proper wallet, this will now generate brand new empty wallet
importprivkeys from above.

should work ok now

it's been a while, and i'm pretty sure it shouldnt connect to network, just to be safe
** dont use the other wallet to send funds, you will just fuck shit up even more. it's purely a last resort fix **

--
explorer is here https://cryptobe.com/chain/StrongHands

--

*disclaimer i am not dev*
i have no interest in this coin other than fixing the error Cheesy
184  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [HONEY] Honey 2.0 - Featuring PoS 3.0 - Sweet! on: October 15, 2017, 07:25:39 AM
I've been getting a lot of messages asking me for bootstraps and the source I use for my wallets so to save some time I'll post my reply here for everyone.

Providing these won't do us any good unfortunately due to the constant forking of the wallet it can't seem to stay on the right chain. I would suggest just waiting on Cryptostiltskin to release a working wallet and then proceed from there.


great.

i tried compiling about 12 different commit versions from github, but i couldnt get one version to sync past block 177874

unfortunately i dont know how to fix that ..
185  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NEW XBY ANN] XTRABYTES - INTEGRATIVE MODULAR BLOCKCHAIN INNOVATIONS on: October 15, 2017, 01:38:23 AM
Weird, the last 4 posts on the previous page are exact duplicates of posts from a few weeks ago. One of them is even mine. Is there something going on with bitcointalk?

I don't see what you see Boss...

Look at the last post on the previous page. Then look at this: https://bitcointalk.org/index.php?topic=1864397.msg22126921#msg22126921

The other 2 or 3 posts are duplicates from a few weeks ago as well.

Ya, that is quite odd. And coming from a different member who has never posted here before. Must be a glitch of some sort.

that'd be someone farming accounts, either to sell or use for airdrops.
186  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [HONEY] Honey 2.0 - Featuring PoS 3.0 - Sweet! on: October 13, 2017, 01:58:21 PM
version 2.0.1.1  
2 active connections and now on 179279 blocks
my conf file.

that's the wrong chain.. apparently.

this is the correct chain.. apparently


The block count listed at the link below should always be the correct block height, unless the seed node goes down then it is blank. If your blocks are different from the amount listed on there then you'll have to resync your block files to get back on the right chain.

https://cryptodatabase.net/honey/data.php

The CoinExchange API is messing up my converter and pricing data unfortunately, will look into that to see what is going on but the rest of the stuff on the page is working.
187  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [HONEY] Honey 2.0 - Featuring PoS 3.0 - Sweet! on: October 13, 2017, 12:25:48 PM
well.
i'm up to block 177873 with the "correct chain" << 177874 seems to be an important fork block

i've tried
v104
v2011
v211
v212

but i canna get past ...................................
my random guess is that one of the many commits between versions did something most excellent..
ie the correct chain was on some version i did not try, continued on, updated to new client with some undisclosed fork behaviour - resulting in none of my clients having correct settings to get past ...


i think i'm going to have to add a special
nsubsidy line in main.cpp to get past . see if it helps

pah. it's a kernel issue not a rewards issue, probably stake time or somesuch

(pls see my post on last page)


.
lol

edit.
the timestamp on the fork block is a few days after the last commit, so it seems to be something else.

here's the full debug rejection
Code:
CheckStakeKernelHash() : using modifier 0x000073e7b7712df8 at height=177873 timestamp=2017-10-12 00:07:44 UTC for block from timestamp=2017-10-11 23:35:49 UTC
CheckStakeKernelHash() : check modifier=0x000073e7b7712df8 nTimeBlockFrom=1507764949 nTimeTxPrev=1507764704 nPrevout=0 nTimeTx=1507766896 hashProof=a111b6fa14305ebb3dd6a0dfac6e1ec041033acfcdab7f4d65d58727ac23f455
ERROR: CheckProofOfStake() : INFO: check kernel failed on coinstake 5c160020730a8a51fbb9ff8f2dfff7a03d294c8eaaca5a74a51c3497ace9d366, hashProof=a111b6fa14305ebb3dd6a0dfac6e1ec041033acfcdab7f4d65d58727ac23f455
ERROR: AcceptBlock() : check proof-of-stake failed for block 9f85fbd40f6b9f52e56eccfcd8bb8a809730104fd0c59799d65f7cbe150d334d
ERROR: ProcessBlock() : AcceptBlock FAILED
188  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [HONEY] Honey 2.0 - Featuring PoS 3.0 - Sweet! on: October 13, 2017, 12:04:34 PM
here's what i can see

        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 178455,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 178455,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 178455,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 178460,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 178460,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 178460,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 178461,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 178461,
        "subver" : "/Honey:1.0.4/",
        "startingheight" : 178428,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 178461,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 178461,
        "subver" : "/Honey:1.0.4/",
        "startingheight" : 178431,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 178461,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 174386,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 178462,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 178466,
        "subver" : "/Honey:1.0.4/",
        "startingheight" : 174390,
        "subver" : "/Honey:1.0.4/",
        "startingheight" : 178507,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 178758,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 20580,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 178837,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 41797,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 38693,
        "subver" : "/Honey:1.0.4/",
        "startingheight" : 167093,
        "subver" : "/Honey:1.0.4/",
        "startingheight" : 165698,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 179023,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 179099,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 179099,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 179099,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 179099,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 179172,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 179175,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 3355,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 3301,
        "subver" : "/Honey:1.0.4/",
        "startingheight" : 13753,
        "subver" : "/Honey:1.0.4/",
        "startingheight" : 179247,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 179279,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 179279,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 179279,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 177874,
        "subver" : "/Honey:2.1.2/",
        "startingheight" : 179220,
        "subver" : "/Honey:2.0.1.1/",
        "startingheight" : 179176,

on another client i have 2 connections with "the correct chain" of clients v212
(not that i can actually sync with those clients)

however you cant sync with clients v212 because they stop initially at block 2
you cant even sync with v2011

so far i am suspecting you need to sync with v140 up to some so far undetermined height, then switch over to another version to get onto correct chain.

seems like the updates are totes borked.

.
i put a checkpoint in at 177874 which is where there seems to be a fork to the "correct chain"
http://honey.thecryptochat.net/block.php?height=177874
but v2120 wont even accept that

Code:
ERROR: CheckProofOfStake() : INFO: check kernel failed on coinstake 5c160020730a8a51fbb9ff8f2dfff7a03d294c8eaaca5a74a51c3497ace9d366, hashProof=a111b6fa14305ebb3dd6a0dfac6e1ec041033acfcdab7f4d65d58727ac23f455
ERROR: AcceptBlock() : check proof-of-stake failed for block 9f85fbd40f6b9f52e56eccfcd8bb8a809730104fd0c59799d65f7cbe150d334d
ERROR: ProcessBlock() : AcceptBlock FAILED

next guess is to see which client will accept the "correct chain" at that height
189  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [HONEY] Honey 2.0 - Featuring PoS 3.0 - Sweet! on: October 12, 2017, 09:29:06 AM
new clients wont sync past block two ?

v2011 will. v21 up wont
190  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [HONEY] Honey 2.0 - Featuring PoS 3.0 - Sweet! on: October 11, 2017, 01:06:49 PM
few people go to a new wallet v2.1 because not everybody can build from source it would be great if posted ready

i currently have 41 peers,
and only one is v2.1 :p

i'm running 2.0.1 which is the last compiled release.
https://github.com/cryptofun/honey/releases



although i do see v2.1 is available as a release now, but not compiled,
191  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [HONEY] Honey 2.0 - Featuring PoS 3.0 - Sweet! on: October 09, 2017, 04:00:54 PM
i was getting all excited about the upcoming fork to new version,
was due in about 18 hours from now i think..

but now i notice all timed fork references have been removed from the git,

so i have no idea whats going on Smiley or even what the fork was meant to acheive
but possibly clients v2011 will fork as they seem to have that time based switch ..

the current code version is v2.1 (with time switch removed), but no-one seems to be running it anyway
(what i can see is mostly v2011 with a smattering of v104)

maybe the changes have been integrated without any time/height switchover and is helping with all the fork shenanigans,

i have around 47 connections at the moment (due to restart)
but as a rule all v2011 clients seem to be on the same chain !
.
woo-hoooo


edit.
switching back to v2011 to see what happens ..
https://github.com/cryptofun/honey/releases
192  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [HONEY] Honey 2.0 - Featuring PoS 3.0 - Sweet! on: October 08, 2017, 03:25:13 AM

seems like we need some more checkpoints and possibly a checkpoint server to get through these forks.
without an explorer or an exchange online it's hard to tell what's the correct height.
193  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [B3]B3Coin Hybrid POW/POS [Scrypt] - ANTI-INSTAMINE, NO PREMINE, NO ICO, NO IPO on: October 06, 2017, 02:42:06 AM
How long does it take for a deposit at Cryptopia to hit? I sent 519 coins to Cryptopia 5 hours ago and my wallet confirmed it really fast, but still nothing in my account there. I checked the address and it's perfect so I don't understand. Do you all have trouble with this too?

Cryptopia needs 200 confirmations before crediting your B3 coin to their platform. That would take almost half day to be done with rate of confirmations for this coin.  I don't know the reason behind this. Most probably to prevent dumpers in selling their coins after they got their stake. I believe the devs are talking with Cryptopia to lessen it to 20 confirmations (other POS coins only need 20 confirmations, one particular coin only need 6) but no update from them yet. 

not too long ago a bunch of POW coins were attacked and many double spends happened,
i believe this is related to that.
194  Alternate cryptocurrencies / Announcements (Altcoins) / Re: |ANN| CrocodileCash | PoW/DPOS/PoS Hybrid | Snap Them Up Fast | Android Wallet | on: October 05, 2017, 02:40:02 PM
I added PoS at cryptohub  but maximum for staking for one user is 1000   Cheesy
I want to know community's opinion about it  Cool

Wow that is great news!

If you want, I can try to optimize the wallet or put in something to reduce CPU usage.

Do you know how exactly works PoS? I was reading that staking has difficulity that depends on summary wallet balance (more balance - lower dif),  but how it guess the task? Using CPU?  But XLR and WYV wallets currently consume 0% and they are at staking too. Only CROC wallet consumes CPU at my server

When I was looking at PoS code it seems to be nearly random. I think it is myth that "more balance = lower difficulty". What actually happens is there is a probability of a block to be a stake block. You can stake multiple times (lets say, 1000 CROC, staked 10 times = 10,000 CROC staked) to find staked blocks faster. Or you can stake the whole 10,000 CROC once. The payout will be greater, but the chances of finding a stake block will be lower.

My setup is, I'm staking about 10,000 CROC split up 3 times. I make much more this way.

I will checkout the CPU usage issue and make it my priority number 1.

Edit: re-compiling CrocodileCash with -pg to do the profiling with gprof. I'll keep you updated.

the general rule (with this form of POS) is that your input weight increases probability (other forms do not use coin weight).
bigger input = more probability
older input = more probability

each input is hashed every second to see if it can stake. if the outcome is lower than the diff you win !!
unless it orphans Sad

the other factor is that min stake age ( 2hours ) effects overall probability because it is time that you cannot stake.

if probability holds correctly.
1 input that takes ~ 24 hours to stake, will pay 22 hours of interest (total stake time - min stake age).
split up
4 inputs will take 4*22 plus the 2hours min stake or ~90 hours, and pay 88 hours of interest

1 input time ratio for staking will then be 22/24
vs
4 inputs time ratio will be 88/90

4 inputs gives you a better probabilistic time ratio for staking. and probabilistically you will not miss out by splitting.

however with 2 hrs min stake age, the difference is not as pronounced as a 7day min stake age.
also this does not take into accountt compounding returns
also
many small stakes raises difficulty.

..

if you're really keen, you can adjust settings when you compile daemon
https://github.com/RangaBoom/CrocodileCash/blob/master/src/wallet.cpp#L18
unsigned int nStakeSplitAge = 1 * 24 * 60 * 60;
int64_t nStakeCombineThreshold = 1000 * COIN;

the basics is that if your input is under 1 day old it will split,
if it is over it will recombine unless it's over 1000

this is also a good way to recombine all yr piddly inputs if you want,

example - combine into single input
unsigned int nStakeSplitAge = 1 ;
int64_t nStakeCombineThreshold = 100000000 * COIN;

split into millions of teeny ones
unsigned int nStakeSplitAge = 9999 * 24 * 60 * 60;
int64_t nStakeCombineThreshold = 1 * COIN;

..

on another note,
glad to see croc going full steam, i dont follow threads and just randomly checked in today to see much discussions !!

i'm available for advice or help if you pm me Smiley
and will happily help with osx wallets as required.
195  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [HONEY] Honey 2.0 - Featuring PoS 3.0 - Sweet! on: October 05, 2017, 12:33:02 PM


here's a bootstrap to block 164592

honeybootstrap164592.dat.zip

https://drive.google.com/open?id=0B5j8d4FSc7drRkNYYllBNmxac3M


quick instructions.
delete everything in yr datadirectory EXCEPT yr wallet.dat << back it up while you're there

unzip honeybootstrap164592.dat.zip and rename to bootstrap.dat
put bootstrap.dat into your datadirectory
open Honey wallet

.
if it does not fully load on first go, you can close your wallet,
rename the bootstrap again (bootstrap.dat.old >> bootstrap.dat)
restart wallet and it will continue from where it ended

.
if you are on correct chain,
but cannot sync you can leave the contents in your datadirectory alone,
and just put the bootstrap in, it will continue from where you are up to.


new bootstrap up to block 173048
https://drive.google.com/open?id=0B5j8d4FSc7drLXNEbmc1WHZqR28

direct link
https://drive.google.com/uc?export=download&id=0B5j8d4FSc7drLXNEbmc1WHZqR28
196  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [HONEY] Honey 2.0 - Featuring PoS 3.0 - Sweet! on: October 05, 2017, 11:41:07 AM
something wrong with nova exchange because i like other people here not get my coin from them. it say it confirmed but no honey coins come to my wallet. i send support message to them but they not answer my support ticket. Can dev please see what happen with nova exchange, they on the right wallet?

Nova Exchange looks to be on a fork.
It is advisable that you Do not send any Honey there until it is fixed

You can check what bloick they're up to in the wallets section, Click on Honey and select CoinInfo.
197  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [B3]B3Coin Hybrid POW/POS [Scrypt] - ANTI-INSTAMINE, NO PREMINE, NO ICO, NO IPO on: September 27, 2017, 02:10:56 AM
When waiting to sync, what exactly is going on?  Is my computer processing something?  Am I simply waiting in line for the others before me?  I thought the value of a block chain is that the other's participating in this coin will be syncing each other.

the blockchain, is a chain of blocks Smiley

so when you are syncing, your client is downloading each block in order and checking that it appears valid.

1
2
3
4
5
6
... etc to the end.
198  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][EDDIE] Scrypt pow-pos coin 0% Premine no ICO-IPO on: September 26, 2017, 04:55:29 PM
yes, you really are very right, we have been thinking here:
ok we take a not Iron Maiden official images policy for now while we try to keep on finding the way to make the coin official, or at least accepted. Everything is ready for the fork, here is the new wallet:https://drive.google.com/open?id=0B5j8d4FSc7drczF6OWdlM2VzOUk ,to install lit is very easy
1 back up old wallet
2 go roaming file
3 delete everything
4 run on-off new wallet
5 install saved dat
6 ready to go


git is up to date is ready for exchanges too, found the pos problem.. probably negative time stamp issues when you have a new block that has a time stamp earlier than the before block, the retargeting fucks up.
i've just set that to rejig at 10k that's a hard fork to fix also but. it should fix at 10k with the change i just pushed.
So I am just waiting to be a jr and few details more to maybe relaunch in other thread? what do ya think? or follow this one? thoughts?



and here is a new mac wallet

EddieCoin-Qt-OSX-v1100.dmg
https://drive.google.com/open?id=0B5j8d4FSc7dreTBCbktMaWNyWlU
199  Alternate cryptocurrencies / Announcements (Altcoins) / Re: |ANN| CrocodileCash | PoW/DPOS/PoS Hybrid | Snap Them Up Fast | Android Wallet | on: September 26, 2017, 04:53:22 PM

here's the latest mac wallet, freshly boiled up for you

CrocodileCash-Qt-OSX-v1380.dmg
https://drive.google.com/open?id=0B5j8d4FSc7drQy1vcjdEUEUtaVE
200  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [HONEY] Honey 2.0 - Featuring PoS 3.0 - Sweet! on: September 26, 2017, 02:38:38 AM

the chain moved  Cheesy now block 164921

it would be nice if the explorer could stay up to date,
it has a habit of forgetting to update

at least the blockheight updates if not the details


http://honey.thecryptochat.net
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 ... 84 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!