Pages:
Author

Topic: [ANN] official NovaCoin thread - the original PoS+scrypt coin. --POOL LIST-- - page 20. (Read 282664 times)

legendary
Activity: 3108
Merit: 1359
No, vote isn't closed yet.

// Voted "no".

Client update 0.5.1 is planned for the next week. There are many fixes for various issues, so applying this update will be recommended for everyone.
full member
Activity: 235
Merit: 100
Dear NVC community members ! Please vote at a poll about possible NVC' algo change.
Should we change the algo to ASIC-resistant ?
1(Yes)
2(No)

The vote is closed already? I vote "No".

The website www.novacoin.org needs an update. There are some broken links on the website and not even a link to www.novaco.in. The website should also mention that Novacoin was the second PoS/PoW coin next to Peercoin only, because there are so many copycats now.The history of a coin will become more important the more coins there are.
I have no time to make a fresh Novacoin-website myself unfortunately.

How about setting up a bounty for a fresh website? I would spend some of my Novacoins for that.

I can't follow the Russian thread because I don't speak Russian.
legendary
Activity: 1960
Merit: 1010
Will NVC go back above $20 per coin or not anytime soon?

If it shows the same exponential growth as bitcoin then it could go above $100 as well.
legendary
Activity: 1148
Merit: 1000
Will NVC go back above $20 per coin or not anytime soon?
legendary
Activity: 1912
Merit: 1020
Dear NVC community members ! Please vote at a poll about possible NVC' algo change.
Should we change the algo to ASIC-resistant ?
1(Yes)
2(No)

Those who wanna change algo to ASIC-resistant ( and get with that much better/fairly/widely  distributed mining ) must vote furiously to outpace conservative members.
Or otherwise we will not get any change  of algo, or we risk to split community
Welcome: https://bitcointalksearch.org/topic/novacoin-911873



Today we growth on very good news: first anti-spam solution based on NVC was released for alpha-testing.

P.S: Sorry, but this text was translated automaticaly by http://translate.google.ru from Russian
legendary
Activity: 976
Merit: 1003
newbie
Activity: 39
Merit: 0
Penek,

The ranking of richest Novacoin addresses shown on https://www.novaco.in is incorrect...

Yes, it is not correct request...
Mistakes associated with orphan blocks, we will fix it later...

Thanks...

Updated.
legendary
Activity: 976
Merit: 1003
Penek,

The ranking of richest Novacoin addresses shown on https://www.novaco.in is incorrect...

Yes, it is not correct request...
Mistakes associated with orphan blocks, we will fix it later...

Thanks...
full member
Activity: 235
Merit: 100
Penek,

The ranking of richest Novacoin addresses shown on https://www.novaco.in is incorrect:



Addresses #2,3 and 4 are empty, according to your blockexplorer.
You have added up transaction inputs and outputs by mistake instead of subtracting them.

Address #7 is also empty, any there are many more mistakes...
legendary
Activity: 3108
Merit: 1359
FreeBSD port has been published:

https://github.com/CryptoManiac/freebsd-ports/commit/109beaa18eecabcc2b30779c695c2cef24e76dd5

Builds successfully on 10.1 with default compiler. Any tests would be appreciated. Smiley
legendary
Activity: 3108
Merit: 1359
New linux ARM builds were published.

Berkeley DB:
ARMv6l | ARMv7l

LevelDB:
ARMv6l | ARMv7l
legendary
Activity: 1960
Merit: 1010
NVC/BTC market will be closed here:

https://cryptex.biz

Withdraw immediately.
legendary
Activity: 3108
Merit: 1359
Win32 were updated again.

MinGW64:

LevelDB: AMD64 | x86

BerkeleyDB: AMD64 | x86

MSVC:

LevelDB: AMD64 | x86

Stability improvement, IPv6 support for MSVC builds.
newbie
Activity: 39
Merit: 0
In API added new method gettransaction
legendary
Activity: 1400
Merit: 1000
Hi, I've been looking through the source code. How much is a CENT (tx fee) worth and where is it located in the source.
src/util.h
line 31-32:
Code:
static const int64 COIN = 1000000;
static const int64 CENT = 10000;

Thanks for helping me Smiley
Although I'm still unsure what value 10000 has.
Please tell me how to calculate it.
It is not calculated.
percent = 1% = 1/100
coin = 1 000 000
coin / 100 = cent
It is simply selected out of the air.(Although perhaps the developer had some reasons for exactly this value, but I do not know them...)
CENT used for:
1)determining low input or not
(src/qt/coincontroldialog.cpp , line 434)
Code:
if(amount < CENT)
    fLowOutput = true;
2)PoW reward rounded to CENT.
(main.cpp, function int64 GetProofOfWorkReward)
Code:
nSubsidy = (nSubsidy / CENT) * CENT;
3) PoS annual interest also rounded to CENT
(main.cpp, function int64 GetProofOfStakeReward)
Code:
nRewardCoinYear = min((nRewardCoinYear / CENT) * CENT, MAX_MINT_PROOF_OF_STAKE);
4) In RPC reservebalance, amount rounded to CENT
(rpcwallet.cpp, function Value reservebalance)
Code:
nAmount = (nAmount / CENT) * CENT;
5) Maybe I missed the other uses  Embarrassed
legendary
Activity: 3108
Merit: 1359
Hi, I've been looking through the source code. How much is a CENT (tx fee) worth and where is it located in the source.
src/util.h
line 31-32:
Code:
static const int64 COIN = 1000000;
static const int64 CENT = 10000;

Thanks for helping me Smiley
Although I'm still unsure what value 10000 has.
Please tell me how to calculate it.

https://blog.novaco.in/2014/06/21/new-build-0-4-4-7b5/
Hm... How this legacy build is related to question? Roll Eyes
legendary
Activity: 976
Merit: 1003
Hi, I've been looking through the source code. How much is a CENT (tx fee) worth and where is it located in the source.
src/util.h
line 31-32:
Code:
static const int64 COIN = 1000000;
static const int64 CENT = 10000;

Thanks for helping me Smiley
Although I'm still unsure what value 10000 has.
Please tell me how to calculate it.

https://blog.novaco.in/2014/06/21/new-build-0-4-4-7b5/
sr. member
Activity: 420
Merit: 250
Hi, I've been looking through the source code. How much is a CENT (tx fee) worth and where is it located in the source.
src/util.h
line 31-32:
Code:
static const int64 COIN = 1000000;
static const int64 CENT = 10000;
Thanks for helping me Smiley

However, I'm still unsure what value 10000 has.
Please tell me where it's located.
legendary
Activity: 3108
Merit: 1359
Win32 were updated again.

MinGW64:

LevelDB: AMD64 | x86

BerkeleyDB: AMD64 | x86

MSVC:

LevelDB: AMD64 | x86

Stability improvement, another appcrash issue has been fixed.
Pages:
Jump to: