Search content
Sort by

Showing 20 of 31 results by Gehacktesmacher
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][COSA] Cosanta POW + POS / CPU mining [English]
by
Gehacktesmacher
on 24/11/2021, 22:46:10 UTC
how to enable staking in the wallet?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DRIP][POS][MN] Now offering masternode monitoring and hosting services
by
Gehacktesmacher
on 17/10/2018, 01:52:35 UTC
yep really disappointing. i think there should have been much better solutions as this hard exit scam, for example community driven coin or finding a new dev team which takeover the project.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Ravencoin [RVN] PoW GPU Mining | Asset Transfer Blockchain (Updated ANN)
by
Gehacktesmacher
on 28/08/2018, 17:39:25 UTC
Be Careful with new wallet links!!!


50viperman quoted the original post from chatturga with wrong wallet link. The Link shows the github sources but it redirects/links to mega.nz.
Some others requoted 50viperman's comment and spreaded this link. Downloads from this mega.nz Link are full of Malware.

The official Link is on the first page and links to github https://github.com/RavenProject/Ravencoin


Be Careful with new wallet links!!!
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][BURST] Burstcoin | Efficient HDD Mining | New Version 1.3.6 | Assets | CFs
by
Gehacktesmacher
on 26/05/2018, 22:34:03 UTC
Will be Version 2.0.0.4 implemented in QBundle before Block 500k ?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DRIP][GPU][POS][MASTERNODE] Private Transactions, Private Staking
by
Gehacktesmacher
on 16/05/2018, 20:19:09 UTC
Is it right that the minimum stake amount is 2000 ?  Huh Shocked
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] ★★ Trillion ★★ [CPU-MINING]
by
Gehacktesmacher
on 11/05/2018, 21:01:31 UTC
1,4GHs Network Hashrate? *lol*

Nice Try  Grin

A Ryzen 8 Core gets 32KHs, seems that there is GPU mining or Pool mining, botnet? -> Not worth it.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] ★★ Trillion ★★ [CPU-MINING]
by
Gehacktesmacher
on 11/05/2018, 20:25:55 UTC
how to compile linux daemon without qt?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] PURE - Decentralized Exchange - Masternodes - PoS - Dex Shares
by
Gehacktesmacher
on 07/04/2018, 00:59:59 UTC
Is there a new linux daemon version?

Or how to compile from source without qt?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] PURE - Decentralized Exchange - Masternodes - PoS - Dex Shares
by
Gehacktesmacher
on 06/04/2018, 12:30:37 UTC
Max supply change to 50 million. - really?
Post
Topic
Board Mining (Altcoins)
Re: [ANN]: cpuminer-opt v3.8.3.3, open source optimized multi-algo CPU miner
by
Gehacktesmacher
on 11/03/2018, 22:51:34 UTC
Quote
if test "x$OS" = "xWindows_NT" ; then
   # MinGW
   AC_CHECK_LIB([pthread], [pthread_create], PTHREAD_LIBS="-lpthreadGC2",[])
else
   AC_CHECK_LIB([pthread], [pthread_create], PTHREAD_LIBS="-lpthread",[])
fi


Hi joblo,
thx for this. It seems there is a bug in the Code Smiley

Freshly downloaded the sources on another machine and gone through configure.ac
My version shows as follows, which explains the problem we got. (I manually edited and corrected it, and it works fine now)
Another thing is that I have to install libgmpv4-dev to meet another requirement, but after that cpuminer binary got compiled fine Cheesy

if test "x$OS" = "xWindows_NT" ; then
   # MinGW
   AC_CHECK_LIB([pthread], [pthread_create], PTHREAD_LIBS="-lpthreadGC2",[])
else
   AC_CHECK_LIB([pthread], [pthread_create], PTHREAD_LIBS="-lpthreadGC2",[])
fi

Post
Topic
Board Mining (Altcoins)
Re: [ANN]: cpuminer-opt v3.8.3.3, open source optimized multi-algo CPU miner
by
Gehacktesmacher
on 08/03/2018, 23:10:32 UTC
Hi.

Got the same problem as "Dead Things", but on an 2x Intel Xeon E5645 using Ubuntu 16.04 LTS
On systems with AVX I am using the precompiled linux version, but it is not possible to use this one on systems without AVX.

Tried to compile, and ran into the same problems.

Quote
mv -f asm/.deps/cpuminer-aesb-x64.Tpo asm/.deps/cpuminer-aesb-x64.Po
mv -f asm/.deps/cpuminer-scrypt-x64.Tpo asm/.deps/cpuminer-scrypt-x64.Po
mv -f algo/yescrypt/.deps/cpuminer-sha256_Y.Tpo algo/yescrypt/.deps/cpuminer-sha256_Y.Po
mv -f algo/yescrypt/.deps/cpuminer-yescrypt-simd.Tpo algo/yescrypt/.deps/cpuminer-yescrypt-simd.Po
g++  -g -O2 -L/root/usr/lib -Lyes/lib  -L/root/usr/lib -Lyes/lib  -o cpuminer cpuminer-cpu-miner.o cpuminer-util.o cpuminer-uint256.o cpuminer-api.o cpuminer-sysinfos.o cpuminer-algo-gate-api.o crypto/cpuminer-oaes_lib.o crypto/cpuminer-c_keccak.o crypto/cpuminer-c_groestl.o crypto/cpuminer-c_blake256.o crypto/cpuminer-c_jh.o crypto/cpuminer-c_skein.o crypto/cpuminer-hash.o crypto/cpuminer-aesb.o crypto/cpuminer-magimath.o algo/argon2d/argon2d/cpuminer-opt.o algo/argon2d/argon2d/cpuminer-core.o algo/argon2d/argon2d/cpuminer-encoding.o algo/argon2d/argon2d/cpuminer-thread.o algo/argon2d/blake2/cpuminer-blake2b.o algo/argon2d/cpuminer-argon2d-crds-gate.o algo/argon2d/cpuminer-argon2d-dyn-gate.o algo/argon2d/argon2d/cpuminer-argon2.o algo/blake/cpuminer-sph_blake.o algo/blake/cpuminer-blake-hash-4way.o algo/blake/cpuminer-blake-gate.o algo/blake/cpuminer-blake.o algo/blake/cpuminer-blake-4way.o algo/blake/cpuminer-sph_blake2b.o algo/blake/cpuminer-blake2b.o algo/blake/cpuminer-sph-blake2s.o algo/blake/cpuminer-blake2s.o algo/blake/cpuminer-blakecoin-gate.o algo/blake/cpuminer-mod_blakecoin.o algo/blake/cpuminer-blakecoin.o algo/blake/cpuminer-blakecoin-4way.o algo/blake/cpuminer-decred-gate.o algo/blake/cpuminer-decred.o algo/blake/cpuminer-decred-4way.o algo/blake/cpuminer-pentablake-gate.o algo/blake/cpuminer-pentablake-4way.o algo/blake/cpuminer-pentablake.o algo/bmw/cpuminer-sph_bmw.o algo/bmw/cpuminer-bmw-hash-4way.o algo/bmw/cpuminer-bmw256.o algo/cryptonight/cpuminer-cryptolight.o algo/cryptonight/cpuminer-cryptonight-common.o algo/cryptonight/cpuminer-cryptonight-aesni.o algo/cryptonight/cpuminer-cryptonight.o algo/cubehash/cpuminer-sph_cubehash.o algo/cubehash/sse2/cpuminer-cubehash_sse2.o algo/echo/cpuminer-sph_echo.o algo/echo/aes_ni/cpuminer-hash.o algo/gost/cpuminer-sph_gost.o algo/groestl/cpuminer-sph_groestl.o algo/groestl/cpuminer-groestl.o algo/groestl/cpuminer-myrgr-gate.o algo/groestl/cpuminer-myrgr-4way.o algo/groestl/cpuminer-myr-groestl.o algo/groestl/aes_ni/cpuminer-hash-groestl.o algo/groestl/aes_ni/cpuminer-hash-groestl256.o algo/fugue/cpuminer-sph_fugue.o algo/hamsi/cpuminer-sph_hamsi.o algo/hamsi/cpuminer-hamsi-hash-4way.o algo/haval/cpuminer-haval.o algo/haval/cpuminer-haval-hash-4way.o algo/heavy/cpuminer-sph_hefty1.o algo/heavy/cpuminer-heavy.o algo/heavy/cpuminer-bastion.o algo/hodl/cpuminer-aes.o algo/hodl/cpuminer-hodl-gate.o algo/hodl/cpuminer-hodl-wolf.o algo/hodl/cpuminer-sha512_avx.o algo/hodl/cpuminer-sha512_avx2.o algo/jh/cpuminer-sph_jh.o algo/jh/cpuminer-jh-hash-4way.o algo/jh/cpuminer-jha-gate.o algo/jh/cpuminer-jha-4way.o algo/jh/cpuminer-jha.o algo/keccak/cpuminer-sph_keccak.o algo/keccak/cpuminer-keccak.o algo/keccak/cpuminer-keccak-hash-4way.o algo/keccak/cpuminer-keccak-4way.o algo/keccak/cpuminer-keccak-gate.o algo/keccak/sse2/cpuminer-keccak.o algo/luffa/cpuminer-sph_luffa.o algo/luffa/cpuminer-luffa.o algo/luffa/cpuminer-luffa_for_sse2.o algo/luffa/cpuminer-luffa-hash-2way.o algo/lyra2/cpuminer-lyra2.o algo/lyra2/cpuminer-sponge.o algo/lyra2/cpuminer-lyra2rev2-gate.o algo/lyra2/cpuminer-lyra2rev2.o algo/lyra2/cpuminer-lyra2rev2-4way.o algo/lyra2/cpuminer-lyra2re.o algo/lyra2/cpuminer-lyra2z-gate.o algo/lyra2/cpuminer-lyra2z.o algo/lyra2/cpuminer-lyra2z-4way.o algo/lyra2/cpuminer-lyra2z330.o algo/lyra2/cpuminer-lyra2h-gate.o algo/lyra2/cpuminer-lyra2h.o algo/lyra2/cpuminer-lyra2h-4way.o algo/lyra2/cpuminer-allium-gate.o algo/lyra2/cpuminer-allium-4way.o algo/lyra2/cpuminer-allium.o algo/cpuminer-m7m.o algo/neoscrypt/cpuminer-neoscrypt.o algo/nist5/cpuminer-nist5-gate.o algo/nist5/cpuminer-nist5-4way.o algo/nist5/cpuminer-nist5.o algo/nist5/cpuminer-zr5.o algo/cpuminer-pluck.o algo/quark/cpuminer-quark-gate.o algo/quark/cpuminer-quark.o algo/quark/cpuminer-quark-4way.o algo/quark/cpuminer-anime-gate.o algo/quark/cpuminer-anime.o algo/quark/cpuminer-anime-4way.o algo/qubit/cpuminer-qubit-gate.o algo/qubit/cpuminer-qubit.o algo/qubit/cpuminer-qubit-2way.o algo/qubit/cpuminer-deep-gate.o algo/qubit/cpuminer-deep-2way.o algo/qubit/cpuminer-deep.o algo/ripemd/cpuminer-sph_ripemd.o algo/ripemd/cpuminer-ripemd-hash-4way.o algo/ripemd/cpuminer-lbry-gate.o algo/ripemd/cpuminer-lbry.o algo/ripemd/cpuminer-lbry-4way.o algo/cpuminer-scrypt.o algo/scryptjane/cpuminer-scrypt-jane.o algo/sha/cpuminer-sph_sha2.o algo/sha/cpuminer-sph_sha2big.o algo/sha/cpuminer-sha2-hash-4way.o algo/sha/cpuminer-sha2.o algo/sha/cpuminer-sha256t.o algo/shabal/cpuminer-sph_shabal.o algo/shabal/cpuminer-shabal-hash-4way.o algo/shavite/cpuminer-sph_shavite.o algo/shavite/cpuminer-sph-shavite-aesni.o algo/shavite/cpuminer-shavite.o algo/simd/cpuminer-sph_simd.o algo/simd/cpuminer-nist.o algo/simd/cpuminer-vector.o algo/simd/cpuminer-simd-hash-2way.o algo/skein/cpuminer-sph_skein.o algo/skein/cpuminer-skein-hash-4way.o algo/skein/cpuminer-skein.o algo/skein/cpuminer-skein-4way.o algo/skein/cpuminer-skein-gate.o algo/skein/cpuminer-skein2.o algo/skein/cpuminer-skein2-4way.o algo/skein/cpuminer-skein2-gate.o algo/sm3/cpuminer-sm3.o algo/sm3/cpuminer-sm3-hash-4way.o algo/tiger/cpuminer-sph_tiger.o algo/whirlpool/cpuminer-sph_whirlpool.o algo/whirlpool/cpuminer-whirlpool-hash-4way.o algo/whirlpool/cpuminer-whirlpool-gate.o algo/whirlpool/cpuminer-whirlpool-4way.o algo/whirlpool/cpuminer-whirlpool.o algo/whirlpool/cpuminer-whirlpoolx.o algo/x11/cpuminer-x11-gate.o algo/x11/cpuminer-x11.o algo/x11/cpuminer-x11-4way.o algo/x11/cpuminer-x11gost-gate.o algo/x11/cpuminer-x11gost.o algo/x11/cpuminer-x11gost-4way.o algo/x11/cpuminer-c11-gate.o algo/x11/cpuminer-c11.o algo/x11/cpuminer-c11-4way.o algo/x11/cpuminer-tribus-gate.o algo/x11/cpuminer-tribus.o algo/x11/cpuminer-tribus-4way.o algo/x11/cpuminer-timetravel-gate.o algo/x11/cpuminer-timetravel.o algo/x11/cpuminer-timetravel-4way.o algo/x11/cpuminer-timetravel10-gate.o algo/x11/cpuminer-timetravel10.o algo/x11/cpuminer-timetravel10-4way.o algo/x11/cpuminer-fresh.o algo/x11/cpuminer-x11evo.o algo/x11/cpuminer-x11evo-4way.o algo/x11/cpuminer-x11evo-gate.o algo/x12/cpuminer-x12-gate.o algo/x12/cpuminer-x12.o algo/x12/cpuminer-x12-4way.o algo/x13/cpuminer-x13-gate.o algo/x13/cpuminer-x13.o algo/x13/cpuminer-x13-4way.o algo/x13/cpuminer-x13sm3-gate.o algo/x13/cpuminer-x13sm3.o algo/x13/cpuminer-x13sm3-4way.o algo/x13/cpuminer-phi1612-gate.o algo/x13/cpuminer-phi1612.o algo/x13/cpuminer-phi1612-4way.o algo/x13/cpuminer-skunk-gate.o algo/x13/cpuminer-skunk-4way.o algo/x13/cpuminer-skunk.o algo/x13/cpuminer-drop.o algo/x14/cpuminer-x14-gate.o algo/x14/cpuminer-x14.o algo/x14/cpuminer-x14-4way.o algo/x14/cpuminer-veltor-gate.o algo/x14/cpuminer-veltor.o algo/x14/cpuminer-veltor-4way.o algo/x14/cpuminer-polytimos-gate.o algo/x14/cpuminer-polytimos.o algo/x14/cpuminer-polytimos-4way.o algo/x14/cpuminer-axiom.o algo/x15/cpuminer-x15-gate.o algo/x15/cpuminer-x15.o algo/x15/cpuminer-x15-4way.o algo/x17/cpuminer-x17-gate.o algo/x17/cpuminer-x17.o algo/x17/cpuminer-x17-4way.o algo/x17/cpuminer-xevan-gate.o algo/x17/cpuminer-xevan.o algo/x17/cpuminer-xevan-4way.o algo/x17/cpuminer-x16r-gate.o algo/x17/cpuminer-x16r.o algo/x17/cpuminer-x16r-4way.o algo/x17/cpuminer-hmq1725.o algo/yescrypt/cpuminer-yescrypt.o algo/yescrypt/cpuminer-sha256_Y.o algo/yescrypt/cpuminer-yescrypt-simd.o asm/cpuminer-neoscrypt_asm.o  asm/cpuminer-sha2-x64.o asm/cpuminer-scrypt-x64.o asm/cpuminer-aesb-x64.o   -lcurl -lz -lssl -lcrypto -ljansson -lpthreadGC2  -lssl -lcrypto -lgmp
/usr/bin/ld: cannot find -lpthreadGC2
collect2: error: ld returned 1 exit status
Makefile:1776: die Regel für Ziel „cpuminer“ scheiterte
make[2]: *** [cpuminer] Fehler 1
make[2]: Verzeichnis „/tmp/cpuminer-argon2d“ wird verlassen
Makefile:5472: die Regel für Ziel „all-recursive“ scheiterte
make[1]: *** [all-recursive] Fehler 1
make[1]: Verzeichnis „/tmp/cpuminer-argon2d“ wird verlassen
Makefile:876: die Regel für Ziel „all“ scheiterte
make: *** [all] Fehler 2
strip: ‚cpuminer‛: Keine solche Datei

I read the last posts in this thread to find help, but found "Dead Things" who has the same issue :=)
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Credits(CRDS): CPU-only mining | Argon2d PoW - Masternodes
by
Gehacktesmacher
on 07/03/2018, 22:39:06 UTC
Quote
http://beastpool.com

Info
fee: 2%
payouts: every 1h

To Start Mining

Miner: https://github.com/BeastPool/cpuminer-argon2d/releases

Code:
-a argon2d-crds -o stratum+tcp://beastpool.com:4334 -u WALLET -p c=CRDS

Explorer
http://beastpool.com/explorer/CRDS

Nodelist
http://beastpool.com/explorer/peers?id=1425

Mined blocks
http://beastpool.com/site/block?id=1425

Pool and miner were tested and we successfully mined block on mainnet.

We are working on avx2 optimization for this algo stay tuned.

Nice One, thx for that. Mining will be more efficient now ;-)
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] QBIC [QBIC] - Masternodes, PoW, Secure, ASIC Resistance
by
Gehacktesmacher
on 20/01/2018, 12:50:41 UTC
Seems that bigmine pool hasn't found a block in your mining period. try this one for testing http://qbic-pool.top
I am mining at it, and rewards are payed out if your balance is over 0,01 qbic.

But in general it is a little bit strange. No way to see where the network hashrate is, maybe big farms are mining solo. All listed pools here have a really low hashrate compared to network hashrate
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [Airdrop] Credits(CRDS): CPU-only mining | Argon2d PoW - Masternodes
by
Gehacktesmacher
on 20/01/2018, 10:07:52 UTC
Quote
It is form a fork of the unitus miner, and my hashrate in wallet is around 9khps, and the miner i'm getting less. But it has pool support. And i'm working on optimizing.

Hm, correct me if I am wrong. But i thought that a wallet upgrade must be done first to allow pool mining?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] LIZUS 🚀🔥🔥🚀 SKEIN - POW - POS 🚀🔥🔥🚀 MASTERNODES 🚀🔥🔥🚀
by
Gehacktesmacher
on 07/01/2018, 14:00:09 UTC
Has the MN limit raised to 10000? - I thought it was 1000 not 10000 when I got this ANN read the first time
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [Phantomx] coin -> online currency [PNX] | Pow/PoS X11 Masternode
by
Gehacktesmacher
on 26/12/2017, 23:44:28 UTC
Quote
Do you use a local wallet? You should disable staking in settings (set "staking=0" in "phantomx.conf" file).

Also, check these posts https://bitcointalk.org/index.php?topic=2251352.msg26834158#msg26834158

Thx for this, disabled staking in Windows wallet.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Credits(CRDS): CPU-only mining | Argon2d PoW - Masternodes
by
Gehacktesmacher
on 26/12/2017, 17:26:49 UTC
./creditsd -daemon or sudo ./creditsd -daemon, or you can try sudo ./creditsd and the get process to background with strg+z and then bg

if you have done make install you can directly type creditsd without ./
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Credits(CRDS): CPU-only mining | Argon2d PoW - Masternodes
by
Gehacktesmacher
on 26/12/2017, 12:50:03 UTC
WoW this way of mining (wallet only) is the most fair type i have seen so far :=)
It should be kept  Cool
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [Phantomx] coin -> online currency [PNX] | Pow/PoS X11 Masternode
by
Gehacktesmacher
on 26/12/2017, 12:34:58 UTC
Hm,

strange things are going on. My MN killed itself caused by splitting up the initially MN transaction last night  Huh
Befor that MN rewards were received smoothly.


https://picload.org/thumbnail/dddrarwi/pnx_mn.jpg
https://picload.org/view/dddrarwi/pnx_mn.jpg.html
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Credits(CRDS): CPU-only mining | Argon2d PoW - Masternodes
by
Gehacktesmacher
on 25/12/2017, 13:39:08 UTC
Hm, I am using Ubuntu 16.04 and can't mine. Every time I set gen=1 creditsd is crashing after a few seconds.
I tried both version, with and without avx2. Any idea?

On Windows it's running fine.



Used precompiled binarys. Compiled it from source, now it seems to be working fine ;-)