Bitcoin Forum
May 27, 2024, 03:24:10 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
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 »  All
  Print  
Author Topic: [ANN][CASH] Ecash | Anonymous | X11 | Masternodes | Darksend | InstantX  (Read 22034 times)
samspaces
Legendary
*
Offline Offline

Activity: 1453
Merit: 1030


View Profile
February 28, 2015, 02:06:33 AM
 #141

I know, but 4500 blocks times about 5000 reward per block is about 20.

perhaps the premine is 200 million Smiley
Shadow_Runner
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
February 28, 2015, 02:15:01 AM
 #142

What block reward is now?
provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
February 28, 2015, 02:33:28 AM
 #143

What block reward is now?

2.40
provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
February 28, 2015, 02:33:49 AM
 #144

so what's the block reward structure?

 Grin
Shadow_Runner
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
February 28, 2015, 02:34:56 AM
 #145

2.40

 Shocked

I better hold other coins.  Grin
provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
February 28, 2015, 02:38:22 AM
 #146


dev is online..so what's the block reward structure of this coin?

and the total number of this coin?

22M or 220M?
Shadow_Runner
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
February 28, 2015, 02:41:49 AM
 #147

What do you mean masternode gets 20% of mining, of ALL mining?
adabau (OP)
Sr. Member
****
Offline Offline

Activity: 389
Merit: 250


View Profile
February 28, 2015, 02:44:33 AM
 #148


dev is online..so what's the block reward structure of this coin?

and the total number of this coin?

22M or 220M?

This is the block reward:

int64_t GetBlockValue(int nBits, int nHeight, int64_t nFees)
{
    double dDiff = (double)0x0000ffff / (double)(nBits & 0x00ffffff);

    /* fixed bug caused diff to not be correctly calculated */
    if(nHeight > 4500 || TestNet()) dDiff = ConvertBitsToDouble(nBits);

    int64_t nSubsidy = 0;
    if(nHeight >= 5465) {
        if((nHeight >= 17000 && dDiff > 75) || nHeight >= 24000) { // GPU/ASIC difficulty calc
            // 2222222/(((x+2600)/9)^2)
            nSubsidy = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0)));
            if (nSubsidy > 25) nSubsidy = 250;
            if (nSubsidy < 5) nSubsidy = 50;
        } else { // CPU mining calc
            nSubsidy = (11111.0 / (pow((dDiff+51.0)/6.0,2.0)));
            if (nSubsidy > 500) nSubsidy = 5000;
            if (nSubsidy < 25) nSubsidy = 250;
        }
    } else {
        nSubsidy = (1111.0 / (pow((dDiff+1.0),2.0)));
        if (nSubsidy > 500) nSubsidy = 5000;
        if (nSubsidy < 1) nSubsidy = 10;
adabau (OP)
Sr. Member
****
Offline Offline

Activity: 389
Merit: 250


View Profile
February 28, 2015, 02:52:28 AM
 #149

What do you mean masternode gets 20% of mining, of ALL mining?

right now it's 3 masternodes competing for 20% of each block reward . You can view the list with the command masternode list.

we need about 40+ masternodes to get darksend and instantx to work.
provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
February 28, 2015, 02:59:54 AM
 #150

What do you mean masternode gets 20% of mining, of ALL mining?

right now it's 3 masternodes competing for 20% of each block reward . You can view the list with the command masternode list.

we need about 40+ masternodes to get darksend and instantx to work.

why the current block reward is 2.4?
AliMan
Hero Member
*****
Offline Offline

Activity: 2016
Merit: 502


Vave.com - Crypto Casino


View Profile
February 28, 2015, 03:21:56 AM
 #151

How do you mine this coin? Any ports or just from the cpu from the wallet?

provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
February 28, 2015, 03:25:12 AM
 #152

What do you mean masternode gets 20% of mining, of ALL mining?

right now it's 3 masternodes competing for 20% of each block reward . You can view the list with the command masternode list.

we need about 40+ masternodes to get darksend and instantx to work.

any more node of this coin?
Shadow_Runner
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
February 28, 2015, 03:25:34 AM
 #153

How do you mine this coin? Any ports or just from the cpu from the wallet?

It's X11 algo. You can mine it with CPU but GPU is better Smiley
For nVidia exist ccminer, for AMD sgminer.
AliMan
Hero Member
*****
Offline Offline

Activity: 2016
Merit: 502


Vave.com - Crypto Casino


View Profile
February 28, 2015, 03:52:56 AM
 #154

How do you mine this coin? Any ports or just from the cpu from the wallet?

It's X11 algo. You can mine it with CPU but GPU is better Smiley
For nVidia exist ccminer, for AMD sgminer.


Where do you usually find the RPC ports from to solo it?

adabau (OP)
Sr. Member
****
Offline Offline

Activity: 389
Merit: 250


View Profile
February 28, 2015, 03:56:19 AM
 #155

How do you mine this coin? Any ports or just from the cpu from the wallet?

It's X11 algo. You can mine it with CPU but GPU is better Smiley
For nVidia exist ccminer, for AMD sgminer.


Where do you usually find the RPC ports from to solo it?


nRPCPort = 8887;

https://github.com/wonko433/ecash/blob/master/src/chainparams.cpp#L40
Shadow_Runner
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
February 28, 2015, 03:56:25 AM
 #156

Where do you usually find the RPC ports from to solo it?

You can use ANY port you want, except system ports. For example I use 7755 for ALL new coins. Of course for solo you can run only one wallet with this port.

Example conf:

Code:
maxconnections=100
rpcuser=solouser
rpcpassword=pass
rpcport=7755
gen=0
server=1
daemon=1

Example cmd

Code:
@echo off
ccminer -a x11 -o http://127.0.0.1:7755 -u solo -p pass
pause
AliMan
Hero Member
*****
Offline Offline

Activity: 2016
Merit: 502


Vave.com - Crypto Casino


View Profile
February 28, 2015, 04:05:47 AM
 #157

Where do you usually find the RPC ports from to solo it?

You can use ANY port you want, except system ports. For example I use 7755 for ALL new coins. Of course for solo you can run only one wallet with this port.

Example conf:

Code:
maxconnections=100
rpcuser=solouser
rpcpassword=pass
rpcport=7755
gen=0
server=1
daemon=1

Example cmd

Code:
@echo off
ccminer -a x11 -o http://127.0.0.1:7755 -u solo -p pass
pause

Thanks man, I never knew that. So what's the nRPC port for that's mentioned prior to your post?

provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
February 28, 2015, 04:07:19 AM
 #158

also if you can not sync the wallet:

here is my peerinfo, that may helps:

Code:
12:06:52

getpeerinfo


12:06:52
"addr" : "104.207.142.169:8888",
"addr" : "213.114.93.223:8888",
"addr" : "[2001:0:9d38:6abd:287c:20ae:7177:4bdb]:65072",
"addr" : "142.136.180.36:8888",
"addr" : "5.80.13.180:8888",
"addr" : "[2001:0:5ef5:79fd:182e:12e4:9d23:fc44]:8888",
"addr" : "129.24.128.122:8888",
"addr" : "67.8.38.82:8888",
"addr" : "[2001:0:9d38:6abd:184a:232b:bcf7:d9ad]:60537",
minerpools
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500


( ͡° ͜ʖ ͡°)


View Profile WWW
February 28, 2015, 04:09:31 AM
 #159

https://ecash.minerpools.com - Up and running!, please add it to the op!

Thank you

Shadow_Runner
Hero Member
*****
Offline Offline

Activity: 574
Merit: 500



View Profile
February 28, 2015, 04:16:12 AM
 #160

Thanks man, I never knew that. So what's the nRPC port for that's mentioned prior to your post?

Sorry, my eng is still bad, didn't understand the question. As I said you can choose port you like, better if it will be something like mine 7755, coz it's not system etc
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 »  All
  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!