Bitcoin Forum
November 05, 2024, 07:20:40 PM *
News: Latest Bitcoin Core release: 28.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 [121] 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 »
2401  Alternate cryptocurrencies / Announcements (Altcoins) / Re: |ANN| PencilCoin [PENCL] [X13] [250 day mining] Launch today 23.02.2015. on: February 23, 2015, 08:56:32 PM
The source Qt icons need to be renamed to pencilcoin from PencilCoin:

Code:
RCC: Error in 'src/qt/bitcoin.qrc': Cannot find file 'res/icons/pencilcoin-16.png'
RCC: Error in 'src/qt/bitcoin.qrc': Cannot find file 'res/icons/pencilcoin-128.png'
RCC: Error in 'src/qt/bitcoin.qrc': Cannot find file 'res/icons/pencilcoin-16.png'
2402  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [SUP] Supcoin, PLUCK algorithm, Just Launched, Mine Now! on: February 23, 2015, 12:59:30 AM
Most people have the missing dll's from other miners they already have. You should never run any file on your system If you don't trust the source.  Your other option is to to build the dependencies from scratch and compile your own. That is the only way to know for sure what you are running on your system.
2403  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [SUP] Supcoin, PLUCK algorithm, Just Launched, Mine Now! on: February 23, 2015, 12:11:15 AM
Wolf0

That is like a foreign language to me.

I have no idea where to even do that at.

Looks like it's picking up your integrated intel graphics instead of the AMD driver. Run sgminer with the -n parameter to see if your card is detected without errors. You could try disabling the integrated graphics from the device manager.

Here is a Win x64 sgminer I compiled from djm34's updated git source:

https://mega.co.nz/#!gAFXyJKB!Zudke2WSrmHfhcXiG-urMqWurY874FFOJ43nRcuB5u8

I get

GPU 0 AMD Radeon R9 200 Series hardware monitor enabled

1 GPU device max detected


EDIT: Same as your exanple bat

I tried yours and the miner goes to the pause screen but blank.



The example.bat and conf is a generic one from the source. You should use your own configuration file or string. Here is the one I use. I get 7.6 KH/s on a HD7850:

Code:
{
"pools" : [
   {
                    "name" : "pool-1",
   "url" : "x",
   "user" : "username",
   "pass" : "password"
   }
],
"intensity" : "16",
"worksize" : "12",
"algorithm" : "pluck",
"gpu-engine" : "1210",
"gpu-memclock" : "1500",
"gpu-threads" : "1",
"thread-concurrency" : "8192",
"lookup-gap" : "2",
"vectors" : "1",
"shaders" : "0",
"gpu-fan" : "100",
"gpu-memdiff" : "0",
"gpu-powertune" : "0",
"gpu-vddc" : "0.000",
"temp-cutoff" : "88",
"temp-overheat" : "85",
"temp-target" : "75",
"temp-hysteresis" : "3",
"api-mcast-port" : "4028",
"api-port" : "4028",
"api-allow" : "W:127.0.0.1,W:192.168.0.1/14",
"tcp-keepalive" : "30",
"auto-fan" : true,
"gpu-dyninterval": "7",
"gpu-platform" : "0",
"hotplug" : "0",
"log" : "5",
"failover-only" : true,
"no-pool-disable" : true,
"queue" : "0",
"expiry" : "1",
"scan-time" : "1",
"shares" : "0",
"kernel-path" : "/usr/local/bin"
}
2404  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [SUP] Supcoin, PLUCK algorithm, Just Launched, Mine Now! on: February 22, 2015, 11:38:31 PM
Wolf0

That is like a foreign language to me.

I have no idea where to even do that at.

Looks like it's picking up your integrated intel graphics instead of the AMD driver. Run sgminer with the -n parameter to see if your card is detected without errors. You could try disabling the integrated graphics from the device manager.

Here is a Win x64 sgminer I compiled from djm34's updated git source:

https://mega.co.nz/#!gAFXyJKB!Zudke2WSrmHfhcXiG-urMqWurY874FFOJ43nRcuB5u8
2405  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [VOYA] Voyacoin - [PLUCK][Dev Plan] The return of profitable mining! on: February 22, 2015, 12:58:07 AM
Looks like the dev was in a rush to push the source.

src/test/ bloom_tests.cpp, key_tests.cpp and rpc_wallet_tests.cpp

All have multiple instances of 'Supcoin' which need to be replaced to read 'Voyacoin' for the Qt to compile.
2406  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [VOYA] Voyacoin - [PLUCK][Dev Plan] The return of profitable mining! on: February 22, 2015, 12:12:44 AM
We appologize for the upset, but when we transferred to github permissions and files got excluded. We are truly sorry but the network itself is working fine and the Windows QT wallet was working from the start.

Github has been updated to reflect these changes and should compile fine now.

The block rewards at start were 0, so no instant mining could be done.

On Arch, I had to make the scripts executable, otherwise the compiler gave permission errors:

chmod +x {autogen.sh,share/genbuild.sh,src/leveldb/build_detect_platform}

Then it quit after building the tests, so I only managed to compile the daemon and client.

Code:
test/bloom_tests.cpp: In member function ‘void bloom_tests::bloom_create_insert_key::test_method()’:
test/bloom_tests.cpp:89:5: error: ‘CSupcoinSecret’ was not declared in this scope
     CSupcoinSecret vchSecret;
     ^
In file included from /usr/include/boost/test/unit_test.hpp:19:0,
                 from test/bloom_tests.cpp:19:
test/bloom_tests.cpp:90:17: error: ‘vchSecret’ was not declared in this scope
     BOOST_CHECK(vchSecret.SetString(strSecret));
                 ^
test/bloom_tests.cpp:92:16: error: ‘vchSecret’ was not declared in this scope
     CKey key = vchSecret.GetKey();
                ^
Makefile:5615: recipe for target 'test/test_test_voyacoin-bloom_tests.o' failed
make[2]: *** [test/test_test_voyacoin-bloom_tests.o] Error 1
make[2]: Leaving directory '/src/Voyacoin/src'
Makefile:6241: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory /src/Voyacoin/src'
Makefile:568: recipe for target 'all-recursive' failed
make: *** [all-recursive] Error 1
2407  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 27, 2014, 11:39:46 PM
Can you use the gpu miner on suprnova pool?

yes

Thanks Smiley. Can you please post your .bat command line I can't get it working.

Sorry just worked it out Smiley

I use this bat and config file in the same directory as the GPU miner. Get ~1.2 MH/s with a HD7850 and v14.4 AMD drivers.

Miner bat:

Code:
@ECHO off
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_USE_SYNC_OBJECTS 1
CLS
COLOR 20
DEL *.bin
sgminer.exe --config ./bitblock_pool.conf
pause

bitblock_pool.conf config file:

Code:
{
"pools" : [
   {
                    "name" : "pool-1",
   "url" : "stratum+tcp://pool1:3333",
   "user" : "username.worker",
   "pass" : "password"
   },
   {
                    "name" : "failover-pool",
   "url" : "stratum+tcp://pool2:3333",
   "user" : "username.worker",
   "pass" : "password"
   }
],

"intensity" : "17",
"algorithm" : "bitblock",
"vectors" : "1",
"worksize" : "256",
"lookup-gap" : "2",
"thread-concurrency" : "8196",
"shaders" : "0",
"gpu-threads" : "2",
"gpu-engine" : "1200",
"gpu-memclock" : "1500",
"gpu-memdiff" : "0",
"gpu-powertune" : "0",
"gpu-vddc" : "0.000",
"gpu-fan" : "100",
"auto-fan" : true,
"temp-cutoff" : "88",
"temp-overheat" : "85",
"temp-target" : "75",
"temp-hysteresis" : "3",
"api-allow" : "W:127.0.0.1,W:192.168.0.1/14",
"api-listen" : true,
"api-mcast-port" : "4028",
"api-port" : "4028",
"tcp-keepalive" : "30",
"gpu-dyninterval": "7",
"gpu-platform" : "0",
"hotplug" : "0",
"log" : "5",
"failover-only" : true,
"failover-switch-delay" : "1",
"no-pool-disable" : true,
"no-submit-stale" : true,
"queue" : "0",
"expiry" : "1",
"scan-time" : "1",
"shares" : "0",
"kernel-path" : "/usr/local/bin"
}
2408  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 27, 2014, 11:08:52 PM
I have downloaded the cpu miner and tried running it on both 32 and 64 bit windows 7 pc's on suprnova pool using .bat file command line 'minerd -a bitblock -o stratum+tcp://bbl.suprnova.cc:3663 -u x -p x -t 3' as shown on pool getting started guide and every time the miner wont start. I've tried different thread settings and no thread setting and still the same.

Can anyone please tell me correct .bat command line.

Try start it with this in the bat to see if it runs and gives you a hashrate:

Code:
minerd -a bitblock --benchmark
Pause

If it  still won't run, make sure the miner id not being block by your firewall. Also check the file properties to see if Windows is blocking the file. I know Windows 8.1 will keep some wallets and miners from running until you unblock them.


2409  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 27, 2014, 10:24:48 PM
And it seems there is no answer about the Darkcoin logo into the BBL wallet tray icon ? Smiley

Read between the lines, this is DRK 2.0! just w8!  Wink

Exactly, it's DRK 2.0 in at least 1 aspect:

With an even faster instamine 1.8m in 18 hours.
The next 1,8m coins at current block reward (25) will take 125 days.

Interpretation of these facts is up to every individual of course : )


That's not true. It took less than 8 hours for over 1.6M coins to be mined with Darkcoin, which uses the same block reward structure and started at 500 coins per block as well. All without even a Windows wallet available for days.

http://www.devtome.com/doku.php?id=a_massive_investigation_of_instamines_and_fastmines_for_the_top_alt_coins#darkcoin


In comparison the BBL was MUCH more fair an evenly distributed. The wallets, miners, pools and block explorer were all available at launch.
2410  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 27, 2014, 06:40:12 PM
With a block reward of 25 at the current diff of 143, even at 7000 sat it's not at all profitable to mine. You're losing around ~50 cents per 1MH/day.

http://www.coinwarz.com/calculators/dogecoin-mining-calculator/?h=1000.00&p=300.00&pc=0.10&pf=2&d=142&r=25&er=0.00007000&btcer=596.27000000&hc=0.00

Last night the diff was around 9 with a block reward of 50!
2411  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BritCoin Launch NOW - x13 PoW+PoS Hybrid with no IPO [BRIT] on: June 27, 2014, 05:34:14 PM
There are a large number of reasons why PoS is beneficial..  Who says you can't trade when PoW is over and PoS starts? Smiley

Enough of PoS Bollocks! Why stake when you can trade?

After the PoW stage, for PoS to be viable, someone has to have an incentive to buy it in the first place. PoS makes no sense for the majority of coins that never get adopted. While you leave the coins in the wallet to wait for your measly yearly stake amount, the value can go up or down 20% in an hour on the exchanges and most eventually become worthless.
2412  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BritCoin Launch NOW - x13 PoW+PoS Hybrid with no IPO [BRIT] on: June 27, 2014, 05:05:58 PM
Enough of PoS Bollocks! Why stake when you can trade?
2413  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 26, 2014, 05:10:08 AM
New ANN Edit with updated links to everything also incoming, along with updated GUI's and possibly a mac gui within a day or two. Thanks guys.

It shouldn't be that hard to compile a GPU miner for this coin. You should offer a bounty for one from the 160,000 coin premine, otherwise someone will just do it on their own and rape the coin to dump on everyone mining with a CPU when it gets on an exchange. Perhaps the member that developed the RouletteCoin GPU miner can do it since it uses the same algos.

https://bitcointalk.org/index.php?topic=592251.msg6577468#msg6577468
2414  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 26, 2014, 02:23:43 AM
only 64 bit os cpu miner?

You can solo mine with the wallet or compile your own external miner using the 32-bit Cygwin setup. The rest of the steps are the same:

https://bitcointalk.org/index.php?topic=665159.msg7506501#msg7506501

2415  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 26, 2014, 12:12:59 AM
{
"blocks" : 334,
"currentblocksize" : 1000,
"currentblocktx" : 0,
"difficulty" : 0.00024414,
"errors" : "",
"generate" : true,
"genproclimit" : 4,
"hashespersec" : 61067,
"networkhashps" : 732,
"pooledtx" : 0,
"testnet" : false
}


Let me get this straight. This coin was released with no info, crappy ANN and looking like it was written by a 13 year old with ADHD.
Within 15 minutes (exactly 15 minutes) there were 334 blocks mined.
The block time is 2.5 minutes.

There should have been exactly 6 blocks mined, but there were over 330.
And you are all still mining this hunk of crap?

It's hard not to hate this community for being so fucking ignorant and shortsighted.
If this "dev" can't even introduce his coin in a mature and professional manner, what are the chances he will be reliable and competent (or dare I say trustworthy)?




Coin launched today and already over 2 million mined.  It's Darkcoin copy complete with the difficulty re-targeting issue that allowed for the instamine.

But apparently all I'm doing is spreading FUD when I point out these FACTS.



http://explorer.bitblock.ml/chain/BitBlock?count=20

The current block is 4178 and there are a total of 1928044 coins mined so far. Not including the first 320 blocks (160,000 coins) mined yesterday before the coin launched, the first 4000 blocks took ~13 hours to mine. With the current diff retarget, the last 178 blocks have taken over 4 hours to mine.
2416  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] M.Jcoin (M.J) | First coin of tribute | POW/POS | New thread on: June 25, 2014, 10:35:47 PM
Has the old thread been cached anywhere?

Yes

https://bitcointa.lk/threads/ann-m-jcoin-m-j-first-coin-of-tribute-pow-pos.326669/
2417  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 25, 2014, 09:31:20 PM


Well, all I can say low ping and early access are matter.

PS. I was late about 10+ minutes.

it's more a matter of low diff, and who come first...

Yes, as I said "early access", but ping is very matter too. I had experience with slow connection. Now with fiber optic internet chance to catch block really higher.
Remember guy with 3 x R9 280x and me with one R9 270 in Ottomancoin thread, I was got 14K, he is zero.

how do you know that he come in the exact same time as you, even 1 sec can make a difference here

the most important thing remain "who come first" for obvious reasons

When solo mining at launch with fast blocks at low diff, the number of peer connections for the wallet makes a huge difference as well. The more connections, the less chance for orphans. You can see his wallet has a lot of peers connected.
2418  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 25, 2014, 08:31:59 PM
No not all were us. A few exchanges were allowed to also pre-mine very few blocks before launch as incentive to exchanging very soon. The server main wallet sits cold with about 50k in BBL that will not be touched or dumped. We will not destroy the potential of a great coin with new hashing algo by just dumping stock instantly...

So you have already paid off exchanges to get listed before officially launching the coin.  My suspicions were correct.  

Oh and the ANN says BLOCK GENERATION 2.5 MINUTES  but over 2 million coins have already been mined.  Just like Darkcoin instamine

Block   Approx. Time   Transactions   Value Out   Difficulty   Outstanding   Average Age   Chain Age   % CoinDD
4016   2014-06-25 20:03:12   1   500   0.25   1879602   0.42037   2.65287   7.08246%
4015   2014-06-25 20:02:41   1   500   0.25   1879102   0.420127   2.65251   7.08808%
4014   2014-06-25 20:02:15   1   500   0.25   1878602   0.419931   2.65221   7.09279%
4013   2014-06-25 20:01:42   1   500   0.25   1878102   0.419664   2.65183   7.09879%
4012   2014-06-25 20:01:36   1   500   0.25   1877602   0.419711   2.65176   7.09988%
4011   2014-06-25 20:01:34   1   500   0.25   1877102   0.419792   2.65174   7.10025%
4010   2014-06-25 20:01:12   1   500   0.25   1876602   0.419653   2.65148   7.10425%
4009   2014-06-25 20:00:41   1   500   0.25   1876102   0.41941   2.65112   7.10989%
4008   2014-06-25 20:00:17   1   500   0.25   1875602   0.419236   2.65084   7.11427%


Anyway, people have fun with this.  I'ts going to the moon.

The block times are way to fast but I don't think 2M coins have been mined yet. Like DarkCoin, the block reward reduces as the diff gets higher. It started at 500 and dropped to 277 around block 1000. Current money supply is probably around 1M.

From http://explorer.bitblock.ml/chain/BitBlock

Outstanding = 1888433 So 1.8M coins mined Smiley

The block reward dropped to 277 around block 1000 and apparently went back to 500 shortly after so that must be correct:

https://bitcointalk.org/index.php?topic=665159.msg7506824#msg7506824
2419  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 25, 2014, 08:14:20 PM
No not all were us. A few exchanges were allowed to also pre-mine very few blocks before launch as incentive to exchanging very soon. The server main wallet sits cold with about 50k in BBL that will not be touched or dumped. We will not destroy the potential of a great coin with new hashing algo by just dumping stock instantly...

So you have already paid off exchanges to get listed before officially launching the coin.  My suspicions were correct.  

Oh and the ANN says BLOCK GENERATION 2.5 MINUTES  but over 2 million coins have already been mined.  Just like Darkcoin instamine

Block   Approx. Time   Transactions   Value Out   Difficulty   Outstanding   Average Age   Chain Age   % CoinDD
4016   2014-06-25 20:03:12   1   500   0.25   1879602   0.42037   2.65287   7.08246%
4015   2014-06-25 20:02:41   1   500   0.25   1879102   0.420127   2.65251   7.08808%
4014   2014-06-25 20:02:15   1   500   0.25   1878602   0.419931   2.65221   7.09279%
4013   2014-06-25 20:01:42   1   500   0.25   1878102   0.419664   2.65183   7.09879%
4012   2014-06-25 20:01:36   1   500   0.25   1877602   0.419711   2.65176   7.09988%
4011   2014-06-25 20:01:34   1   500   0.25   1877102   0.419792   2.65174   7.10025%
4010   2014-06-25 20:01:12   1   500   0.25   1876602   0.419653   2.65148   7.10425%
4009   2014-06-25 20:00:41   1   500   0.25   1876102   0.41941   2.65112   7.10989%
4008   2014-06-25 20:00:17   1   500   0.25   1875602   0.419236   2.65084   7.11427%


Anyway, people have fun with this.  I'ts going to the moon.

The block times are way too fast but I don't think 2M coins have been mined yet. Like DarkCoin, the block reward reduces as the diff gets higher. It started at 500 and dropped to 277 around block 1000. Current money supply is probably around 1M.
2420  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 25, 2014, 07:06:59 PM
A 3Ghz intel sandy bridge making 15kh/s per core
And top miner has 3MH/s ??!?! These days instamining with pre-rented hardware and/or closed source miners is called fair-launch.
Is this BBR/XMR replay?

Thats what i wanted to say before... if every body is having the same hr issue, why top miners not?

Probably a GPU miner around that hasn't been posted or a botnet?
Pages: « 1 ... 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 [121] 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!