Search content
Sort by

Showing 20 of 23 results by shazeal
Post
Topic
Board Announcements (Altcoins)
Re: BCX.... ()==[:::::::::::::> << BATTLECOIN >> ︻╦╤─ - - Official thread
by
shazeal
on 24/01/2014, 18:26:01 UTC
I get this error at compile time the wallet with ubuntu 12.04, all the dependencies are installed:

Code:
g++ -c -m64 -pipe -fstack-protector-all --param ssp-buffer-size=1 -msse2 -O2 -fdiagnostics-show-option -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -Wstack-protector -D_REENTRANT -DQT_WEBKIT -DQT_GUI -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -DBOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN -D__NO_SYSTEM_INCLUDES -DUSE_UPNP=1 -DSTATICLIB -DUSE_IPV6=1 -DHAVE_BUILD_INFO -DLINUX -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++-64 -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4 -Isrc -Isrc/json -Isrc/qt -I. -I. -o version.o src/version.cpp
src/version.cpp:33:23: fatal error: build.h: No such file or directory
compilation terminated.
make: *** [version.o] Error 1
make: *** Waiting for unfinished jobs....

Is there a way to solve?

Yes, you have to, 'mkdir build' in the main directory. Run the make. It will shitout again, then 'cp build/build.h src/'.

Really crap source  Roll Eyes
Post
Topic
Board Mining (Altcoins)
Topic OP
Cgminer 3.7.2 patch - Add powertune to API
by
shazeal
on 19/01/2014, 19:22:23 UTC
I made this small patch for CGMiner to add the "--gpu-powertune" option to the API, called via the "gpupow" command.

The "gpupow" command takes the same command format as "gpuengine", "gpumem" etc, so a string with 2 parameters "0,20" for GPU0, Powertune 20.

I made this as we have Night/Day power rates so the mining cards run at full overclock over night, then in the morning they are switched via a cronjob to low clock/power usage. Previously I could down the clocks but not set the power tune. Some cards like my R9 290s do not like running at 0 Powertune so they need to be at 3 on stock clocks, where as my R9 270s run great at -10 powertune at stock.

PATCH: https://mega.co.nz/#!FIY0DIaA!QO96qhkQu0VsKaqcHvmA5GXcy8Fs8kFUGy6nnD1ufBs
To Apply:
Code:
cd cgminer-3.7.2
patch -p1 < cgminer-3.7.2-api.patch
make
sudo make install

EXAMPLE: Using pycgminer (https://github.com/tsileo/pycgminer)
Snippet from my Cron script for the R9 270...

Code:
#!/usr/bin/python
import sys
from pycgminer import CgminerAPI

def main():
        cgminer = CgminerAPI()

        if sys.argv[1] == "day":
                # day settings
                cgminer.host='localhost'
                cgminer.gpuengine("0,945")
                cgminer.gpumem("0,1400")
                cgminer.gpupow("0,-10")
        elif sys.argv[1] == "night":
                # night settings
                cgminer.host='localhost'
                cgminer.gpuengine("0,1050")
                cgminer.gpumem("0,1500")
                cgminer.gpupow("0,10")

if __name__ == "__main__":
            main()

From my crontab...
Code:
0 23 * * * /home/derp/bin/cg-api.py night
0 7 * * * /home/derp/bin/cg-api.py day

End result, I use about 200W less power during the day at a cost of around 200kh/s, and gain those at night where power is half the cost.

Hope this helps someone  Cheesy
Post
Topic
Board Altcoin Discussion
Re: Nxt Finally Releases Source Code and It is a SINGLE Java Class
by
shazeal
on 03/01/2014, 19:08:58 UTC
D-

No code commenting. Try harder next time!
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][MONA] Monacoin LAUNCHING 2014/01/01 0:00 GMT
by
shazeal
on 03/01/2014, 04:07:42 UTC
Coinex did moon straight away since they have a pool for it. Slight bias there. Coinedup is much the same.
Post
Topic
Board Altcoin Discussion
Re: Unofficial Monacoin [MONA] Information & Resources Thread + Giveaway
by
shazeal
on 02/01/2014, 22:33:32 UTC
Trolls are downvoting the coinedup reddit post.  Roll Eyes
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][MONA] Monacoin LAUNCHING 2014/01/01 0:00 GMT
by
shazeal
on 02/01/2014, 08:58:38 UTC
Cryptsy request thread. Sorry if its a repost.

https://cryptsy.freshdesk.com/support/discussions/topics/62106

I used to like cryptsy the best but now I like coinex.pw the best. It would be amazing to get it on cryptsy.

I think it will first hit coinex. Is there anyway to help to get it on coinex?

I too prefer coinex, I just opened a support ticket asking when they were going to add it. Just click the support link on the left hand side on the coinex site.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][MONA] Monacoin LAUNCHING 2014/01/01 0:00 GMT
by
shazeal
on 02/01/2014, 06:45:41 UTC
Cryptsy request thread. Sorry if its a repost.

https://cryptsy.freshdesk.com/support/discussions/topics/62106
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][MONA] Monacoin LAUNCHING 2014/01/01 0:00 GMT
by
shazeal
on 02/01/2014, 05:29:58 UTC
I can't build the qt from source, I have this error:

Quote
uild/leveldb.o: In function `CLevelDB::CLevelDB(boost::filesystem::path const&, unsigned long, bool, bool)':
leveldb.cpp:(.text+0x419): undefined reference to `leveldb::Env::Default()'
/home/blaise/Downloads/coins/monacoin/src/leveldb/libleveldb.a(comparator.o): In function `leveldb::BytewiseComparator()':
comparator.cc:(.text+0x47f): undefined reference to `leveldb::port::InitOnce(leveldb::port::OnceType*, void (*)())'
/home/blaise/Downloads/coins/monacoin/src/leveldb/libleveldb.a(options.o): In function `leveldb::Options::Options()':
options.cc:(.text+0x2d): undefined reference to `leveldb::Env::Default()'
collect2: error: ld returned 1 exit status
make: *** [monacoin-qt] Error 1

Any idea how to fix this?

Thanks Smiley

Yeah yet another wallet with improper leveldb setup. To do it the devs way you need to 'chmod +x src/leveldb/build_detect_platform' that should let you run the make -f makefile.unix

To do it the correct way you need to change all the libraries linked from the leveldb dir and link against system libraries. Best not to try this unless you understand Makefile / linking.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][MOON] Mooncoin: You know where it's headed! LAUNCHING 12/30 @ 1PM EST
by
shazeal
on 30/12/2013, 03:40:53 UTC
There is a launch clock on this website. Took a while to pop up.

http://poolparty.port-x.de/German_BTC_PoolParty_League/German_BTC_PoolParty_League_2014.html
Post
Topic
Board Announcements (Altcoins)
Re: Nxt :: descendant of Bitcoin - Updated Information
by
shazeal
on 22/12/2013, 21:21:50 UTC
Keep getting this error after a few minutes of running NXT.

Code:
Java HotSpot(TM) 64-Bit Server VM warning: INFO: os::commit_memory(0x000000077c280000, 4718592, 0) failed; error='Cannot allocate memory' (errno=12)
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (malloc) failed to allocate 4718592 bytes for committing reserved memory.
# An error report file with more information is saved as:

Loads of free memory ~13GB, and 4G of swap. Tried increasing the -Xms and -Xmx values. Using Oracle JDK 1.7 u45 on Linux.
Post
Topic
Board Mining (Altcoins)
Re: [ANN] Dogecoin Pool doge.scryptpools.com - 2% fee
by
shazeal
on 19/12/2013, 20:07:39 UTC
Yeah thats the crappy VARDIFF, use a different pool. Also try changing "-g 1" to "-g 2" on your command.
Post
Topic
Board Mining (Altcoins)
Re: [ANN] Dogecoin Pool doge.scryptpools.com - 2% fee
by
shazeal
on 19/12/2013, 19:52:42 UTC

Just took another screenshot this minute. 84 is the highest it has ever been. Even though I've been doing 300+ for the last 3 days.

http://i.imgur.com/zQw6lyH.png

You have HW errors, fix your cgminer command. Lower intensity till they go away.
Post
Topic
Board Mining (Altcoins)
Re: [ANN] Dogecoin Pool doge.scryptpools.com - 2% fee
by
shazeal
on 19/12/2013, 19:39:12 UTC
Any comments with regards to Worker and Dashboard not displaying the actual rate you're hashing?

Can you please post a screenshot of your miner and dashboard so I can see the difference?
It's been like that all day long:
Am I being dumb?
I've got 5x more coins on a different pool hashing at the same rate. It's weird.


Any feedback on this? Am I being a dumbass or that's a problem?

No, you're not. I don't know why you are experiencing that.

Are there flucuations? Do you ever see the hash rate of your worker go above at least 100 kh/s on the worker page?

Please post your cgminer settings when you have a chance.

Code:
cgminer.exe --scrypt -o stratum+tcp://doge.scryptpools.com:3333 -u xxx -p xx--no-submit-stale --thread-concurrency 4096 --intensity 14 --worksize 256 -g 1

i7 - 4770
24GB Ram
XFX 7850

I have never gotten the right hash rate on this pool.

Its because of the stupid VARDIFF setup on this server. One of my miners is only 350kh/s and it was getting over 500 diff last night. My 1.6Mh miner was getting over 1k.
Post
Topic
Board Mining (Altcoins)
Re: [ANN] Dogecoin Pool doge.scryptpools.com - 2% fee
by
shazeal
on 19/12/2013, 19:00:16 UTC
Sent manual payment request as soon as it came back up. Still nothing. Is it working?

Address is DL1xbiqx8iSuz4SetgRTN4L7duJ4vi1557
Post
Topic
Board Mining (Altcoins)
Re: [ANN] Dogecoin Pool doge.scryptpools.com - 2% fee
by
shazeal
on 19/12/2013, 17:46:04 UTC
Are you going to enable manual payments or not?  Huh
Post
Topic
Board Mining (Altcoins)
Re: [ANN] Dogecoin Pool doge.scryptpools.com - 2% fee
by
shazeal
on 19/12/2013, 17:38:52 UTC
Check your block chain, are you sure blocks are being paid out? Two sites Ive seen so far had bad chains were getting blocks but never reported to workers.
Post
Topic
Board Mining (Altcoins)
Re: [ANN] Dogecoin Pool doge.scryptpools.com - 2% fee
by
shazeal
on 19/12/2013, 17:11:14 UTC
Back to p2pool for me, sick of these shady pools. Will come back if you fix the payouts.
Post
Topic
Board Mining (Altcoins)
Re: [ANN] Dogecoin Pool doge.scryptpools.com - 2% fee
by
shazeal
on 19/12/2013, 17:03:45 UTC
Looks like pool is not generating blocks? Seen this on 2 other pools now. Owner was getting blocks but never reported to workers.
Post
Topic
Board Mining (Altcoins)
Re: [ANN] Dogecoin Pool doge.scryptpools.com - 2% fee
by
shazeal
on 19/12/2013, 15:58:13 UTC
Fix vardiff, max 512 or something sensible!

Fix manual payout!
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DOGE] Dogecoin - very currency - many coin - wow - v1.1 Released
by
shazeal
on 19/12/2013, 00:55:39 UTC
They are only processing small payments. I sent 50k nothing, 1k nothing, 500 got processing, 50, got processing, 10 and its almost confirmed.