Bitcoin Forum
June 23, 2024, 11:02:49 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 [8] 9 »
141  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 23, 2014, 07:46:38 PM
Is there any indication how long it should take to get soime coins? I.e. after mining x hours at 20000 primespersec you should find a block?
Or is it just totally random? There are people in the richlist that have 100+ coins. How did they manage to do that?

Theoretically you will find a gap with merit m (~difficulty) within e^m prime gaps:

e^20.45 = 760890487,  so you will need to calculate about 760890487 primes to find a new block.

If your primes per second are 25000 then you will need 760890487/25000 = 30435 seconds, which are about 8:30 hours.
So you will finde ~ 2.8 blocks per day.

The rpc-call getmininginfo has a new value called gapsperday, which is calculated using the above formula.

142  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 23, 2014, 07:26:07 PM


I uploaded the Windows wallet to Google Drive  for  anyone who is experiencing issues downloading or extracting the wallet files.  No password is required, just unzip/extract the files and run "gapcoin-qt.exe"  !


Gapcoin Windows wallet client  32 bit :

https://drive.google.com/file/d/0B5sqHEF1wQJPVklOMlVQcWJVcW8/view?usp=sharing


Gapcoin Windows wallet client  64 bit :

https://drive.google.com/file/d/0B5sqHEF1wQJPQnZueEVtem15UjQ/view?usp=sharing


Enjoy!
 
Gap: GYmKqhG2tw5zU4tTWXH1FJMMePjWye9fxi

.

Verified!! Thanks!

Checksum for the verified files:
Code:
1d5a41d58b6d946c163ca8a7db08d70d  Gapcoin-qt-win32.zip
c40a0c965084159650ad2a9e82ceac6c  Gapcoin-qt-win64.zip
143  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 22, 2014, 10:38:27 PM
Almost forgot to mention, Gapcoin has two new RPC calls:

Code:
listbestprimes amount (min merit)

Returns a sorted list of the best prime gap merits.

Arguments:
1. amount        (numeric). number of prime gaps to display
2. merit         (numeric, default = 16). minimum merit to display

Code:
listprimerecords merit

Returns a list of all prime gaps with the given integer merit.

Arguments:
1. merit        (numeric 1,2,3..) the prime gap merit.

Note: The above rpc-calls can take a long time to respond.
144  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 22, 2014, 09:37:29 PM
Hey j0nn9. I am using some computers mining with gapminer on another computer and it seems to work. So i got 'share found' which as far as i can understand it shoud be block found on the daemon of the other pc. But it seems that i didnt found anything.

So my question is, can gapminer indeed mine on another computer's daemon or i am doing something wrong and i am just wasting the miners power? They seem to get work and mining... Could it just be an orphaned?

Yes, it should be possible to mine with gapminer on another computer.
If gapcoind accepted the block, you should see something like this: "Found Share 20.798565  =>  accepted"
otherwise: "Found Share 20.798565  =>  stale!"

When your share (block) was accepted, it can still be orphan.
145  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 22, 2014, 08:41:49 PM
Hey guys,

First off, this is an awesome coin! I'm having fun trying to find blocks (found 2 so far!)

Question,

Is there any way to tweak the sievesize and sieveprimes  from the command line or the config file?

And if there is, what would be some good values to test ?


thanks

You can use the setgenerate rpc call:

Code:
setgenerate generate ( genproclimit ) ( sievesize ) ( sieveprimes ) ( shift )

Set 'generate' true or false to turn generation on or off.
Generation is limited to 'genproclimit' processors, -1 is unlimited.
See the getgenerate call for the current setting.

Arguments:
1. generate         (boolean, required) Set to true to turn on generation, off to turn off.
2. genproclimit     (numeric, optional) Set the processor limit for when generation is on. Can be -1 for unlimited.
                    Note: in -regtest mode, genproclimit controls how many blocks are generated immediately.
3. sievesize        (numeric, optional) Sets the size of the prime sieve.
4. sieveprimes      (numeric, optional) Sets the amount of primes used in the sieve.
5. shift            (numeric, optional) Sets the header shift.
                    Note: sieve size can only have 2^shift size.

Note: shift also should be in range [14, 512]

Shift, should be the most sensitive parameter, because it controls the bit size of the primes.
Second would be sieve primes.
146  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 22, 2014, 08:34:32 PM
j0nn9,

can you please elaborate on this:

Quote
With Gapcoin, you will be able to anonymously send money around the globe in no time.

Anonymously as in Bitcoin "anonymously"  Wink

Can you also please elaborate on this:

Quote
First of all, Gapcoin follows Riecoin's way and uses enough Miller-Rabin tests with random bases to avoid composite numbers being accepted as Prove of Work, like Primecoin mistakenly could.

In Primecoin a fermat liar could be accepted as PoW.

PoW.cpp:
Code:
130   /* start has to be a prime */                                                 
131   if (!mpz_probab_prime_p(mpz_start, 25)) {                                     
132                                                                                 
133     mpz_clear(mpz_start);                                                       
134     return false;                                                               
135   }                                                                             
136                                                                                 
137   mpz_init(mpz_end);                                                           
138   mpz_nextprime(mpz_end, mpz_start);

mpz_nextprime also uses 25 miller rabin test:

mpz/nextprime.c:
Code:
107     /* Miller-Rabin test */                                                     
108     if (mpz_millerrabin (p, 25))                                               
109       goto done;

Every client uses 25 miller rabin test with random bases, to prove the primality of a prime gap.
That should ensure that pseudo primes gets detected by the network.

I'm doing some reading on the three links I found on your website.

Also, looking forward to difficulty 35.4245 Cheesy

Do you have any expectations of what kind of hardware would need to be involved with this in order to get the difficulty to that level?

Probably GPU and/or FPGA miners.
147  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 22, 2014, 08:18:11 PM
Looking to setup a pool for this, was wondering how to setup the stratum support.

Dev, are you working on any source code for stratum pool support?

Essentially I saw in the original post and on official website that a pool is more friendly to setup for this coin as oppose to RIC or XPM. I thought I read it to be as easy as scrypt, however, being that this coin has its own algo, I doubt the stratum support is there just yet. Just curious how one would go about this.

Thanks in advance!

Yes, a stratum-mining implementation for MPOS pools is in progress.
I will inform you once it's finished.
148  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 21, 2014, 07:58:57 PM
Is it possible to upload wallets somewhere else too so that we can download from terminal?

Yes, created a github release:
https://github.com/gapcoin/gapcoin/releases/tag/v0.9.2-launch

Linux Wallet: https://github.com/gapcoin/gapcoin/releases/download/v0.9.2-launch/linux.7z
Windows Wallet: https://github.com/gapcoin/gapcoin/releases/download/v0.9.2-launch/windows.7z
149  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 21, 2014, 07:14:09 PM
This is the error from winrar

windows.7z: Unknown method in windows\32\md5sum.txt
windows.7z: Unknown method in windows\64\md5sum.txt
windows.7z: Unknown method in windows\32\gapcoin-cli.exe
windows.7z: Unknown method in windows\64\gapcoin-cli.exe
windows.7z: Unknown method in windows\32\gapcoin-qt.exe
windows.7z: Unknown method in windows\32\gapcoind.exe
windows.7z: Unknown method in windows\64\gapcoind.exe
windows.7z: Error - operation failed

.

use 7zip: http://www.7-zip.org/

Thanks, so to start mining with the wallet all we have to do is add setgenerate true?

Yes
150  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 21, 2014, 07:04:45 PM
Trying to get the RPC miner on to my BAMT miner and am getting this when trying the make all:

Code:
src/PoWCore/src/PoWUtils.h:296: warning: integer constant is too large for ‘long’ type


Uhh, that was a bug within the 32 bit compatibility.
It is fixed now, use git pull.


Code:
src/Miner.cpp: In static member function ‘static void* Miner::miner(void*)’:
src/Miner.cpp:171: error: ‘SCHED_IDLE’ was not declared in this scope
make: *** [src/Miner.o] Error 1

Any idea how to fix this?

you could delete Miner.cpp:170-172

Sorry for that, GapMiner still has alpha qualities!
151  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 21, 2014, 06:55:54 PM
This is the error from winrar

windows.7z: Unknown method in windows\32\md5sum.txt
windows.7z: Unknown method in windows\64\md5sum.txt
windows.7z: Unknown method in windows\32\gapcoin-cli.exe
windows.7z: Unknown method in windows\64\gapcoin-cli.exe
windows.7z: Unknown method in windows\32\gapcoin-qt.exe
windows.7z: Unknown method in windows\32\gapcoind.exe
windows.7z: Unknown method in windows\64\gapcoind.exe
windows.7z: Error - operation failed

.

use 7zip: http://www.7-zip.org/
152  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 21, 2014, 06:49:42 PM
I'm running the qt, and get this in terminal:

Code:
(gapcoin-qt:11481): Gtk-CRITICAL **: IA__gtk_widget_get_direction: assertion 'GTK_IS_WIDGET (widget)' failed

What's that mean?

QT seems to run fine, but it gives that

Could be a GTK bug?
https://bugzilla.redhat.com/show_bug.cgi?id=924683
153  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 21, 2014, 06:24:19 PM
lol at the block size, 0.07, no point for early adopter...

no surprise mining is dead

lol
I found a block with 0.009 GAP  Tongue

Don't worry it will become more, reward is increasing quadratically within the first 1152 blocks.
154  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 21, 2014, 06:11:34 PM
Source code updated do:

Code:
git pull

if submodule PoWCore doesn't update, try:

Code:
git submodule foreach git pull -u origin master

or:

Code:
git submodule update
155  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 21, 2014, 06:04:52 PM
How do I get my windows client to mine this?

help > debug window > console

setgenerate true
156  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 21, 2014, 05:59:19 PM
Gapcoin launched!


Password: psd<C_p,[v,zq}^Q#7Zr0CjF2tN'E?

Windows Wallet: https://mega.co.nz/#!YhYkjSbD!lM2hZPTjAjwjPA9XXQTQxFLZOX0nkuCdYi3O0MebAis
md5: 2fb8963b7c490a6328a3183db8155e67

Linux Wallet: https://mega.co.nz/#!FkAViaYL!AFrEJ_L1_-27Pi4Yyrezmg5loG5uHZ8L1HvCaSiLgF4
md5: 683977a151e26921f48d8a1d4264daf5

Source code: https://github.com/gapcoin/gapcoin

RPC-Miner (source code): https://github.com/gapcoin/GapMiner



Build instructions for Gapcoin Core: https://github.com/gapcoin/gapcoin/blob/v0.9.2-gap/doc/build-unix.md

Disclaimer: The RPC-Miner currently has no speed improvement in comparison to Gapcoin Core!


RPC port: 31397
P2P port: 31469

Gapcoin should automatically connect to the network,
but if you get problems, you can add these nodes to your gapcoin.conf file:

Code:
addnode=212.227.143.155
addnode=104.131.69.82
addnode=95.215.44.9
addnode=155.254.36.179
addnode=199.127.226.192

157  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 21, 2014, 05:37:42 PM
Can you mine in wallet with setgenerate true?

Yes

can i mine using windows?

Yes
158  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 21, 2014, 05:02:17 PM
Gapcoin launching in about 1 hour!
159  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 21, 2014, 04:50:49 PM
Is there GPU miner for that coin .
 quiting from official website
"Gapcoin will only be CPU mined until someone releases an GPU or maybe even an FPGA miner. This site will contain detailed instructions to mine Gapcoin, including descriptions for cloud mining. "

Pls inform if someone got GPU miner for GAP coin

Thanks in advance

No, there are currently no GPU miner for Gapcoin.
160  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GAP] Gapcoin - The largest, decentralized prime gap search on: October 20, 2014, 11:22:47 PM
Hi!

I get error while configure:

configure: error: libmpfr headers missing

although libmpfr is installed:

ls -l | grep libmpf
lrwxrwxrwx  1 root root       16 мар 31  2013 libmpfr.so.4 -> libmpfr.so.4.1.1
-rwxr-xr-x  1 root root   377240 янв 25  2013 libmpfr.so.4.1.1

System OpenSuSe 12.3


Mpfr configure error is sometimes based on a incompatible gmp library version.
you could try to compile and install the newest versions from their websites:

https://gmplib.org/
http://www.mpfr.org/


Will i be able to mine this coin from wallet itself or i must use the mining software??

Both are possible.

What is more profitable, solo mining or RPC mining?

It should theoretically be equal, because Gapcoin and GapMinder using the same PoW / mining code base.
At the end it will depend on your system.
Pages: « 1 2 3 4 5 6 7 [8] 9 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!