Bitcoin Forum
May 11, 2024, 01:50:23 AM *
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 61 62 »
821  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Halcyon v1.1.0.2 ~ NeoScrypt PoW and 300% PoS on: December 30, 2014, 05:44:23 PM
Think of coin days (weight) rather than coins alone. 300% per year is 0.82% per day. 5 HAL can be earned in 1 day by 610 HAL input, in 2 days by 305 HAL, etc. Of course, if it's lucky enough because stake generation is a random process like any kind of mining.
822  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Halcyon v1.1.0.2 ~ NeoScrypt PoW and 300% PoS on: December 29, 2014, 11:48:17 PM
anymore addnodes?

The connection right now takes forever to download the blockchain

The whole block chain is 166K blocks or 88 megabytes to download. How can it take forever?
823  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Halcyon v1.1.0.2 ~ NeoScrypt PoW and 300% PoS on: December 27, 2014, 10:21:11 PM
MacOS X client uploaded. See the OP.

824  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Orbitcoin v1.5.0.0 ~ NeoScrypt ~ Green Stake on: December 27, 2014, 05:47:10 PM
What is the exchange orb is traded on the most?

Cryptsy
825  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: CoinPayments.net - Unbiased Unified Money Solution - Multi Payment Procesing on: December 27, 2014, 05:59:46 AM
How does one get added to Coinpayments.net? Our coin has a very, very active community, over 20 developers (and online stores for example http://hyperbundle.com), gaming servers that integrate the currency, poker site and much more. Please check my signature and please let me know how we can make this happen. You can check us on bitcointalk: https://bitcointalk.org/index.php?topic=624651.0 and twitter: https://twitter.com/hypercrypto Thanks!

You pay $250 every 90 days if you don't make over $5000 in transaction volume every month.
826  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [PXC] Phoenixcoin v0.6.6.0 ~ NeoScrypt on: December 27, 2014, 05:55:53 AM
New pool in Paris, France: DNB (2% fee, PPLNS)
827  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Halcyon v1.1.0.2 ~ NeoScrypt PoW and 300% PoS on: December 27, 2014, 05:47:34 AM
My HAL block explorer is up and loading the block chain.

http://atlas.phoenixcoin.org:2080
828  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Halcyon v1.1.0.2 ~ NeoScrypt PoW and 300% PoS on: December 26, 2014, 12:12:23 PM
Good to hear that, Mullick. The pool is up again. I'll get a block explorer running today most likely upon completion of a X15 -> BLAKE2s block hash verification module.
829  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Orbitcoin v1.5.0.0 ~ NeoScrypt ~ Green Stake on: December 25, 2014, 07:18:13 PM
Hi dev,
I have a question: Do you plan to build the wallet with qt5? All my other wallets build fine but it seems Orbit still needs qt4. 
Great job with this coin, BTW. Just starting to collect some.
Thanks in advance.

Qt4 does the job just fine, so I haven't bothered myself even to compile Qt5. I see no advantage in replacing one with the other. I think it isn't difficult to make the current client Qt5 compatible if that matters.
830  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Halcyon v1.1.0.2 ~ NeoScrypt PoW and 300% PoS on: December 25, 2014, 04:54:38 PM
The network has just switched to correct PoS rewards. Make sure you run v1.1.0.2 wallet.

By the way, merry Xmas Smiley
831  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Halcyon v1.1.0.2 ~ NeoScrypt PoW and 300% PoS on: December 25, 2014, 10:51:53 AM
Bittrex says for HAL "Possible community takeover in progress"
832  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Halcyon v1.1.0.2 ~ NeoScrypt PoW and 300% PoS on: December 24, 2014, 09:07:53 PM
I have noticed some blocks delivering very little stake rewards. It appears there is a bug of the previous developer who has had copy-pasted some code without understanding. Bitcoin defines COIN as 100 million units (satoshis). HAL also follows this. However PPC, NVC and most other PoW/PoS coins define COIN as 1 million units. That's for a reason to avoid overflows.

Code:
static const int64_t COIN = 100000000;
static const int64_t CENT = 1000000;

int64_t nRewardCoinYear = 300 * CENT;

nSubsidy = (nCoinAge * nRewardCoinYear) / (365 * COIN);

While 64-bit unsigned integer allows for very large numbers (2 ^ 64 = 18446744073709551616), it may be not enough for the code above. Here is a real example from the HAL block chain.

Code:
in  158.52232967
out 158.52752437
coin age nValueIn=15852232967 nTimeDiff=335481 nCentSecond=5318122968
coin age nCoinAge=61552349166

nCoinAge * nRewardCoinYear = 61552349166 * 300000000 = 18465704749800000000

Incorrect subsidy is (18465704749800000000 - 18446744073709551616) / (365 * 100000000) =
519470 satoshis or 0.0051947 HAL

Correct subsidy is 18465704749800000000 / (365 * 100000000) =
505909719 satoshis or 5.05909719 HAL

It gets limited to 5 HAL on the next step. So, I've modified the reward calculation code to make sure it never overflows.

Code:
nSubsidy = (nCoinAge / 365) * (nRewardCoinYear / COIN);

Works fine for HAL since the current and future interest rates are multiples of 100% which is COIN.

Please upgrade to HAL v1.1.0.2.
833  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Halcyon v1.1.0.1 ~ NeoScrypt PoW and 300% PoS on: December 22, 2014, 04:49:57 PM
Regarding your Cryptsy transaction, it isn't in our block chain.

Code:
gettransaction dac1e447fb3e9397a3739e7f6dc6f9d1307c9d518a99c5f5bd26b3e3654ff2ed
No information available about transaction (code -5)

They are still on the old block chain.

If you check txid's of vin's they dumped, you see some of them are also not found and the others are prior to the NeoScrypt hard fork.
834  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Halcyon v1.1.0.1 ~ NeoScrypt PoW and 300% PoS on: December 22, 2014, 04:07:29 PM
There was a bug in the hash caching code by block index which resulted in many of these errors in debug.log:

Code:
ERROR: GetKernelStakeModifier() : block not indexed

Fixed it and uploaded v1.1.0.1, please upgrade.
835  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Halcyon v1.1.0.0 ~ NeoScrypt PoW and 300% PoS on: December 22, 2014, 01:28:25 PM
I really doubt that this is his real face.. innocent person crucified.. Huh


why do you publicly show someone's personal info..?
did he scammed you?
if you just don't like his posts just ignore him.. Huh

He's a known scammer and fraudster as well as paid shill.

He has numerously posted peoples private information, and has harassed/fudded/stole/scammed numerous people. This is just a taste of his own medicine-- also just in case you think that, that might not be him, here's some additional proof (copy pasted from the BitBay thread.)

Enough of this copy-paste. We've got your point.
836  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Orbitcoin v1.5.0.0 ~ NeoScrypt ~ Green Stake on: December 22, 2014, 10:20:34 AM
Hey guys I tried sending my coins to the new wallet from the old in transactions of 20. I sent around 620 to the new wallet but only 100 showed up. TXID doesn't check out on the block chain either.  The old wallet is stuck at 1070 blocks and 0 hours with only one connection. Do I need to reset the wallet?

If it doesn't show in a block explorer, it hasn't made itself to the block chain. What version is your old wallet? If it's v1.4.x.x, no surprise you're out of sync. You should have copied your old wallet.dat to v1.5.0.0 and got it synchronised before making any transactions.

Why did only 100 go through then?

They went through before v1.5 clients banned you. Since these coins were unspent on the new chain, they were allowed to get into blocks there.
837  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Halcyon v1.1.0.0 ~ NeoScrypt PoW and 300% PoS on: December 22, 2014, 10:10:06 AM
Guys, could you take your private investigations elsewhere? He isn't a kind of celebrity or big time criminal, therefore I don't really care.

I'll put up a block explorer somewhere this week.
838  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Orbitcoin ∅RB - v1.5.0.0 ~ NeoScrypt ~ min staking age 5 day to 1 day ~ 1 reward on: December 21, 2014, 09:57:42 PM
Good point. What are your thoughts on a multi-algo. I see the pos as sha-256. What are your thoughts about making this mineable by sha-256 in the future?

Vegas

PoS is low energy hashing, therefore SHA-256d fits fine and it's not worth the effort of switching it to a different algorithm. PoW should stay ASIC free. It's not good to have several algorithms for PoW. Increased complexity, reduced security. If an attacker compromises one algorithm of those few, he may screw the whole network. It's difficult to do block trust balancing across several algorithms. None of the existing coins does it properly, but who cares?
839  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Orbitcoin v1.5.0.0 ~ NeoScrypt ~ Green Stake on: December 21, 2014, 08:42:17 PM
Orbitcoin has switched to NeoScrypt just half an hour ago. To celebrate this and deal with a bit high PoW difficulty after switching from Scrypt, here we have some bounties:

1) 100 ORB to whoever mines the 1st NeoScrypt PoW block;
2) 10 ORB for each of 50 following NeoScrypt PoW blocks.

You also get the usual block reward of 1 ORB. Solo mine or join our pool http://dnb.io

Have fun! Smiley

UPDATE: The 1st ORB NeoScrypt block #1010099 was found by phantom at dnb.io pool. Congratulations Smiley

According to the block chain, all these blocks after the switch were mined by the DNB pool. I'm going to send 600 ORB from our Advancement Fund to David, so he can credit 100 ORB to the finder of the 1st NeoScrypt block and distribute the remaining 500 ORB between miners of the following 50 blocks up to #1011416.
840  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Orbitcoin v1.5.0.0 ~ NeoScrypt ~ Green Stake on: December 21, 2014, 07:47:33 PM
Hey guys I tried sending my coins to the new wallet from the old in transactions of 20. I sent around 620 to the new wallet but only 100 showed up. TXID doesn't check out on the block chain either.  The old wallet is stuck at 1070 blocks and 0 hours with only one connection. Do I need to reset the wallet?

If it doesn't show in a block explorer, it hasn't made itself to the block chain. What version is your old wallet? If it's v1.4.x.x, no surprise you're out of sync. You should have copied your old wallet.dat to v1.5.0.0 and got it synchronised before making any transactions.
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!