Pages:
Author

Topic: [CLR][POOL] CopperLark - mining profit more than on BTC and LTC mining - page 3. (Read 7875 times)

sr. member
Activity: 448
Merit: 250
Asked on the other thread but I will also ask here, is there common NVidia settings for GPU mining?  I realize it's not a popular choice Wink  I have a 580 though and would like to try it.

Also, any way to make the official forums English?
legendary
Activity: 1554
Merit: 1008
legendary
Activity: 1554
Merit: 1008
Doesn't even recognize my GPU *sigh*

If video card not found - uninstall Intel OpenCL driver (SDK)
legendary
Activity: 1554
Merit: 1008
Is there a Blockchain explorer for this coin? (with an API, if possible).

coming soon

Quote
I was interested how much I can get when I will mine and I failed to find how many coins are in block. So here is function from main.cpp, notice premined blocks, 2100000 coins... The latest block is 19804; value for block 19804 is about 31 CLR; (200 /360 * (19804 /360 + 1)). This value will slowly increase until it will reach 50 coins and will be 50 for next 2 years.
that true

all pools has same soft from one author - DarkDog - but different tax. So payout must be same for long time period mining. Payout difference happens because different shares was made for found this block.
member
Activity: 112
Merit: 10
without problems Wink


Ok, after make 2 test in the 2 differents servers (85.93.45.185 left) (137.116.210.102 right) have in one 11 accepted with a payout of .21 and another (137.116.210.102) 26 accepted with a payout of .25, why the payout is different in everyone of the servers  Huh

hero member
Activity: 490
Merit: 500
Is there a Blockchain explorer for this coin? (with an API, if possible).
full member
Activity: 136
Merit: 100
It just restarts gpu there is no shares someone know who to make this work?

Exact same behavior here...hash rate is there, like 20000kh/s or so, but 0 shares, and lots of restart gpu messages. Sad

Same problem  Cry i think it need higher worksize  Huh
hero member
Activity: 812
Merit: 1000
It just restarts gpu there is no shares someone know who to make this work?

Exact same behavior here...hash rate is there, like 20000kh/s or so, but 0 shares, and lots of restart gpu messages. Sad
full member
Activity: 136
Merit: 100
It just restarts gpu there is no shares someone know who to make this work?
PSL
member
Activity: 166
Merit: 10
I was interested how much I can get when I will mine and I failed to find how many coins are in block. So here is function from main.cpp, notice premined blocks, 2100000 coins... The latest block is 19804; value for block 19804 is about 31 CLR; (200 /360 * (19804 /360 + 1)). This value will slowly increase until it will reach 50 coins and will be 50 for next 2 years.

Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    // Genesis block 1 coin
    if (nHeight == 0)
        return 1 * COIN + nFees;

    // Firstblock 2 100 000 coins (pregenerate for investors)
    if (nHeight == 1)
        return 21 * 100 * 1000 * COIN + nFees;

    // First 90 days subsidy 200*day coins
    if (nHeight <= 32400)
    {
        int64 p = ((200 * COIN / 360) * (nHeight / 360 + 1)) + nFees;
        return p;
    }

    int64 nSubsidy = 50 * COIN;

    // Subsidy is cut in half every 260000 blocks, which will occur approximately every 2 years
    nSubsidy >>= (nHeight / 260000);

    return nSubsidy + nFees;
}
PSL
member
Activity: 166
Merit: 10
for compile under Unix (rus)
http://vk.com/topic-54516173_28520074

That thread describes how to compile QT client, CopperLark. In short, it is simple, there are no extra libraries necessary compared with other based scrypt currencies:
Code:
$ cd CopperLarkSrc
$ qmake && make

I would like to have headless client, copperlarkd, and I cannot compile that one.

BTW, CopperLark QT client is very different for other bitcoint QT clients, I am lost in that interface that was redesigned... And I noticed that some text are in Russian, not in English.
hero member
Activity: 812
Merit: 1000

Thanks, I'll give it a try mate.

EDIT: It starts mining, hash rate slowly drops down, and it restarts or so it says. Not a single accepted share.
legendary
Activity: 1554
Merit: 1008
It is possible to download source code for CLR, it is here: https://copperlark.com/wp-download.php?file=CopperLarkSrc.zip. I would like to have git source code for it but thanks for zip...

for compile under Unix (rus)
http://vk.com/topic-54516173_28520074
PSL
member
Activity: 166
Merit: 10
It is possible to download source code for CLR, it is here: https://copperlark.com/wp-download.php?file=CopperLarkSrc.zip. I would like to have git source code for it but thanks for zip...

I cannot compile the code and I would like to see clear instructions how to compile on Linux (Ubuntu in my case). File included in the archive, doc/build-unix.txt is for bitcoin and was not updated for CLR.

I try to compile source in similar way as other scrypt based coins but it fails because CLR is not scrypt based coin and I miss some library or something else or makefile.unix was not updated...

Code:
$ cd CopperLarkSrc/src
$ chmod +x leveldb/build_detect_platform
$ make -f makefile.unix clean;  make -f makefile.unix USE_UPNP=-
....
/bin/sh ../share/genbuild.sh obj/build.h
fatal: Not a git repository (or any of the parent directories): .git
g++ -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -I/home/psl/CLRcoin/CopperLarkSrc/src -I/home/psl/CLRcoin/CopperLarkSrc/src/obj -DUSE_IPV6=1 -I/home/psl/CLRcoin/CopperLarkSrc/src/leveldb/include -I/home/psl/CLRcoin/CopperLarkSrc/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -o bitcoind leveldb/libleveldb.a obj/alert.o obj/version.o obj/checkpoints.o obj/netbase.o obj/addrman.o obj/crypter.o obj/key.o obj/db.o obj/init.o obj/irc.o obj/keystore.o obj/main.o obj/net.o obj/protocol.o obj/bitcoinrpc.o obj/rpcdump.o obj/rpcnet.o obj/rpcmining.o obj/rpcwallet.o obj/rpcblockchain.o obj/rpcrawtransaction.o obj/script.o obj/sync.o obj/util.o obj/wallet.o obj/walletdb.o obj/hash.o obj/bloom.o obj/noui.o obj/leveldb.o obj/txdb.o -Wl,-z,relro -Wl,-z,now   -Wl,-Bdynamic -l boost_system -l boost_filesystem -l boost_program_options -l boost_thread -l db_cxx -l ssl -l crypto -Wl,-Bdynamic -l z -l dl -l pthread /home/psl/CLRcoin/CopperLarkSrc/src/leveldb/libleveldb.a /home/psl/CLRcoin/CopperLarkSrc/src/leveldb/libmemenv.a
obj/init.o: In function `Hash3':
/home/psl/CLRcoin/CopperLarkSrc/src/keccak/hash3.h:16: undefined reference to `crypto_hash(unsigned char*, unsigned char const*, unsigned long long)'
/home/psl/CLRcoin/CopperLarkSrc/src/keccak/hash3.h:18: undefined reference to `crypto_hash(unsigned char*, unsigned char const*, unsigned long long)'
obj/main.o: In function `Hash3':
/home/psl/CLRcoin/CopperLarkSrc/src/keccak/hash3.h:16: undefined reference to `crypto_hash(unsigned char*, unsigned char const*, unsigned long long)'
/home/psl/CLRcoin/CopperLarkSrc/src/keccak/hash3.h:18: undefined reference to `crypto_hash(unsigned char*, unsigned char const*, unsigned long long)'
/home/psl/CLRcoin/CopperLarkSrc/src/keccak/hash3.h:16: undefined reference to `crypto_hash(unsigned char*, unsigned char const*, unsigned long long)'
obj/main.o:/home/psl/CLRcoin/CopperLarkSrc/src/keccak/hash3.h:18: more undefined references to `crypto_hash(unsigned char*, unsigned char const*, unsigned long long)' follow
obj/main.o: In function `ProcessMessage':
/home/psl/CLRcoin/CopperLarkSrc/src/main.cpp:3156: undefined reference to `cs_mapNewsMessages'
obj/main.o: In function `std::map, std::allocator > >::begin()':
/home/psl/CLRcoin/CopperLarkSrc/src/main.cpp:4641: undefined reference to `mapNewsMessages'
obj/main.o: In function `ProcessMessage':
/home/psl/CLRcoin/CopperLarkSrc/src/main.cpp:3157: undefined reference to `mapNewsMessages'
/home/psl/CLRcoin/CopperLarkSrc/src/main.cpp:3158: undefined reference to `CNewsMessage::RelayTo(CNode*) const'
/home/psl/CLRcoin/CopperLarkSrc/src/main.cpp:3157: undefined reference to `mapNewsMessages'
obj/main.o: In function `CNewsMessage':
/home/psl/CLRcoin/CopperLarkSrc/src/newsmessage.h:58: undefined reference to `CNewsMessage::SetNull()'
obj/main.o: In function `ProcessMessage':
/home/psl/CLRcoin/CopperLarkSrc/src/main.cpp:3652: undefined reference to `CNewsMessage::GetHash() const'
/home/psl/CLRcoin/CopperLarkSrc/src/main.cpp:3655: undefined reference to `CNewsMessage::ProcessMessage()'
/home/psl/CLRcoin/CopperLarkSrc/src/main.cpp:3662: undefined reference to `CNewsMessage::RelayTo(CNode*) const'
obj/main.o: In function `Hash3':
/home/psl/CLRcoin/CopperLarkSrc/src/keccak/hash3.h:16: undefined reference to `crypto_hash(unsigned char*, unsigned char const*, unsigned long long)'
/home/psl/CLRcoin/CopperLarkSrc/src/keccak/hash3.h:18: undefined reference to `crypto_hash(unsigned char*, unsigned char const*, unsigned long long)'
/home/psl/CLRcoin/CopperLarkSrc/src/keccak/hash3.h:16: undefined reference to `crypto_hash(unsigned char*, unsigned char const*, unsigned long long)'
/home/psl/CLRcoin/CopperLarkSrc/src/keccak/hash3.h:18: undefined reference to `crypto_hash(unsigned char*, unsigned char const*, unsigned long long)'
obj/rpcnet.o: In function `sendnews(std::vector, std::allocator > > >, std::allocator, std::allocator > > > > > const&, bool)':
/home/psl/CLRcoin/CopperLarkSrc/src/rpcnet.cpp:42: undefined reference to `CSendNewsMessage::CSendNewsMessage()'
/home/psl/CLRcoin/CopperLarkSrc/src/rpcnet.cpp:43: undefined reference to `CSendNewsMessage::Test(std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >, std::basic_string, std::allocator >)'
/home/psl/CLRcoin/CopperLarkSrc/src/rpcnet.cpp:44: undefined reference to `CSendNewsMessage::~CSendNewsMessage()'
/home/psl/CLRcoin/CopperLarkSrc/src/rpcnet.cpp:44: undefined reference to `CSendNewsMessage::~CSendNewsMessage()'
obj/rpcnet.o: In function `sendalert(std::vector, std::allocator > > >, std::allocator, std::allocator > > > > > const&, bool)':
/home/psl/CLRcoin/CopperLarkSrc/src/rpcnet.cpp:23: undefined reference to `CSendAlert::CSendAlert()'
/home/psl/CLRcoin/CopperLarkSrc/src/rpcnet.cpp:24: undefined reference to `CSendAlert::Test(std::basic_string, std::allocator >, std::basic_string, std::allocator >)'
/home/psl/CLRcoin/CopperLarkSrc/src/rpcnet.cpp:25: undefined reference to `CSendAlert::~CSendAlert()'
/home/psl/CLRcoin/CopperLarkSrc/src/rpcnet.cpp:25: undefined reference to `CSendAlert::~CSendAlert()'
obj/rpcblockchain.o: In function `Hash3':
/home/psl/CLRcoin/CopperLarkSrc/src/keccak/hash3.h:16: undefined reference to `crypto_hash(unsigned char*, unsigned char const*, unsigned long long)'
/home/psl/CLRcoin/CopperLarkSrc/src/keccak/hash3.h:18: undefined reference to `crypto_hash(unsigned char*, unsigned char const*, unsigned long long)'
obj/txdb.o: In function `Hash3':
/home/psl/CLRcoin/CopperLarkSrc/src/keccak/hash3.h:16: undefined reference to `crypto_hash(unsigned char*, unsigned char const*, unsigned long long)'
/home/psl/CLRcoin/CopperLarkSrc/src/keccak/hash3.h:18: undefined reference to `crypto_hash(unsigned char*, unsigned char const*, unsigned long long)'
/home/psl/CLRcoin/CopperLarkSrc/src/keccak/hash3.h:16: undefined reference to `crypto_hash(unsigned char*, unsigned char const*, unsigned long long)'
obj/txdb.o:/home/psl/CLRcoin/CopperLarkSrc/src/keccak/hash3.h:18: more undefined references to `crypto_hash(unsigned char*, unsigned char const*, unsigned long long)' follow
collect2: ld returned 1 exit status
make: *** [bitcoind] Error 1

More information about this coins is here
https://bitcointalksearch.org/topic/copperlark-best-coin-of-the-year-227252
https://copperlark.com/en/

I failed to find information about ports used. If you need it, it is here:

# 10333 P2P connect
# 10332 JSON RPC
legendary
Activity: 1050
Merit: 1000
Doesn't even recognize my GPU *sigh*
hero member
Activity: 812
Merit: 1000
Now to find a 7970 config for this thing...hmmm
legendary
Activity: 1554
Merit: 1008
profit ratio = 4 x BTC mining
legendary
Activity: 1554
Merit: 1008
legendary
Activity: 1554
Merit: 1008
Pages:
Jump to: