Bitcoin Forum
May 02, 2024, 12:50:43 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 [28] 29 30 31 32 33 34 35 36 37 38 »
  Print  
Author Topic: [XPM] Pool mining primecoin using DigitalOcean (VPS)  (Read 88501 times)
ivanlabrie
Hero Member
*****
Offline Offline

Activity: 812
Merit: 1000



View Profile
July 15, 2013, 04:29:15 AM
 #541

Is there a way with listtransaction to only see mined coins?

I checked before bur might have missed it. 


Not without a separate script, they are labeled as being mined when you listtransactions.

Let me ask again...do I need to do anything else other than sharing the same wallet.dat between my instances and main rig to get the coins in my main wallet?
Do I need to watch all the instances, or is having one with putty opened displaying watch 'primecoind getbalance "" & primecoind getmininginfo' enough?
Unlike traditional banking where clients have only a few account numbers, with Bitcoin people can create an unlimited number of accounts (addresses). This can be used to easily track payments, and it improves anonymity.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714654243
Hero Member
*
Offline Offline

Posts: 1714654243

View Profile Personal Message (Offline)

Ignore
1714654243
Reply with quote  #2

1714654243
Report to moderator
1714654243
Hero Member
*
Offline Offline

Posts: 1714654243

View Profile Personal Message (Offline)

Ignore
1714654243
Reply with quote  #2

1714654243
Report to moderator
rethaw (OP)
Sr. Member
****
Offline Offline

Activity: 378
Merit: 255



View Profile
July 15, 2013, 05:07:56 AM
 #542

Is there a way with listtransaction to only see mined coins?

I checked before bur might have missed it.  


Not without a separate script, they are labeled as being mined when you listtransactions.

Let me ask again...do I need to do anything else other than sharing the same wallet.dat between my instances and main rig to get the coins in my main wallet?
Do I need to watch all the instances, or is having one with putty opened displaying watch 'primecoind getbalance "" & primecoind getmininginfo' enough?

I don't suggest sharing the wallet.dat, but it will probably work fine if you aren't mining too many. My suggestion on how to move mined coins around is in the OP.

ivanlabrie
Hero Member
*****
Offline Offline

Activity: 812
Merit: 1000



View Profile
July 15, 2013, 05:42:37 AM
 #543

Is there a way with listtransaction to only see mined coins?

I checked before bur might have missed it.  


Not without a separate script, they are labeled as being mined when you listtransactions.

Let me ask again...do I need to do anything else other than sharing the same wallet.dat between my instances and main rig to get the coins in my main wallet?
Do I need to watch all the instances, or is having one with putty opened displaying watch 'primecoind getbalance "" & primecoind getmininginfo' enough?

I don't suggest sharing the wallet.dat, but it will probably work fine if you aren't mining too many. My suggestion on how to move mined coins around is in the OP.

Thanks again rethaw...I did read it, but wasn't sure I was doing everything right.
jubalix
Legendary
*
Offline Offline

Activity: 2618
Merit: 1022


View Profile WWW
July 15, 2013, 06:04:48 AM
 #544

will sending XPM that is confirmed, while there is unconfirmed XPM in the qt-wallet cause a problem?

Admitted Practicing Lawyer::BTC/Crypto Specialist. B.Engineering/B.Laws

https://www.binance.com/?ref=10062065
glongsword
Full Member
***
Offline Offline

Activity: 314
Merit: 100



View Profile
July 15, 2013, 06:33:01 AM
 #545

will sending XPM that is confirmed, while there is unconfirmed XPM in the qt-wallet cause a problem?

No, but there's a 0.01 XPM fee involved either way.
adambeazley
Newbie
*
Offline Offline

Activity: 17
Merit: 0



View Profile WWW
July 15, 2013, 01:23:43 PM
 #546

is anyone else getting compiler errors with the mikaelh2 build?
Code:
In file included from main.cpp:16:0:
prime.h:10:17: fatal error: gmp.h: No such file or directory
compilation terminated.
make: *** [obj/mail.o] Error 1
notlist3d
Legendary
*
Offline Offline

Activity: 1456
Merit: 1000



View Profile
July 15, 2013, 01:35:46 PM
 #547

Can someone please post a guide step by step (sorry for asking :/) on upgrading to mikaelh2 build from original?

Thank you!
bidji29
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


View Profile
July 15, 2013, 01:53:10 PM
 #548

How do i replace the ancient version with the new one, without delete/recreate my droplet? And keeping the same wallet


I replace it.  Here, lete me help you out some on linux.  I move the old files out and then create a new section.

Quote
primecoind stop
cd ~
mv primecoin old4
git clone https://github.com/mikaelh2/primecoin

cd ~/primecoin/src
make -f makefile.unix USE_UPNP=-
mkdir ~/.primecoin
echo "rpcuser=miner2
rpcpassword=test2
gen=1" > ~/.primecoin/primecoin.conf
sudo mv primecoind /usr/local/bin/.

primecoind --daemon



http://www.freebieservers.com/  100% FREE GAME SERVERS
Mrko
Newbie
*
Offline Offline

Activity: 20
Merit: 0


View Profile
July 15, 2013, 01:55:55 PM
 #549

How do i replace the ancient version with the new one, without delete/recreate my droplet? And keeping the same wallet


I replace it.  Here, lete me help you out some on linux.  I move the old files out and then create a new section.

Quote
primecoind stop
cd ~
mv primecoin old4
git clone https://github.com/mikaelh2/primecoin

cd ~/primecoin/src
make -f makefile.unix USE_UPNP=-
mkdir ~/.primecoin
echo "rpcuser=miner2
rpcpassword=test2
gen=1" > ~/.primecoin/primecoin.conf
sudo mv primecoind /usr/local/bin/.

primecoind --daemon



You need to do "mingw-get install mingw32-gmp" before compiling, else you get this error message:

Code:
In file included from main.cpp:16:0:
prime.h:10:17: fatal error: gmp.h: No such file or directory
compilation terminated.
make: *** [obj/mail.o] Error 1
bidji29
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


View Profile
July 15, 2013, 01:57:21 PM
 #550

i get this error on some of my instance :

root@een-11:~# primecoind: checkqueue.h:167:                                                                                                            CCheckQueueControl<T>::CCheckQueueControl(CCheckQueue<T>*) [with T = CScriptCheck]: Assertion `pqueue->nTotal == pqueue->nIdle' failed


Everytime, i need to restart the process. Any idea how to auto-restart a process when it crashes?

http://www.freebieservers.com/  100% FREE GAME SERVERS
notlist3d
Legendary
*
Offline Offline

Activity: 1456
Merit: 1000



View Profile
July 15, 2013, 02:03:28 PM
 #551

How do i replace the ancient version with the new one, without delete/recreate my droplet? And keeping the same wallet


I replace it.  Here, lete me help you out some on linux.  I move the old files out and then create a new section.

Quote
primecoind stop
cd ~
mv primecoin old4
git clone https://github.com/mikaelh2/primecoin

cd ~/primecoin/src
make -f makefile.unix USE_UPNP=-
mkdir ~/.primecoin
echo "rpcuser=miner2
rpcpassword=test2
gen=1" > ~/.primecoin/primecoin.conf
sudo mv primecoind /usr/local/bin/.

primecoind --daemon



You need to do "mingw-get install mingw32-gmp" before compiling, else you get this error message:

Code:
In file included from main.cpp:16:0:
prime.h:10:17: fatal error: gmp.h: No such file or directory
compilation terminated.
make: *** [obj/mail.o] Error 1


I get a error when trying to use "mingw-get install mingw32-gmp"  .  Specifically "mingw-get: command not found"
de_xt
Hero Member
*****
Offline Offline

Activity: 602
Merit: 535


Account hacked from Oct 11th to Nov 1st 2017


View Profile
July 15, 2013, 02:05:54 PM
 #552

When adding a payment method (either Credit card or Paypal) there's no place to put a coupon code. Is the promotion gone?

         ▄███████████████▄
       ▄██▀             ▀██▄
    ▄▄██▀                 ▀██▄▄
█████▀▀       ▄▀▀▀▀▀▀▀▄▄    ▀▀█████
██          ▄▀ ▄▄▄▀▀▀▀▄▀█▄▄      ██
▐█▌       ▄▀ ▄▀ ▄▄▄▀▀▀▄▀▀▀███   ▐█▌
 ██      ▄▀▄▀▄▀▀▄▄▄▀▀▀▀▀█ ▄█▀   ██
 ▐█▌    █▄▀▄▀▄█▀▀▀ ▀█▀ ▄▀▄▀█   ▐█▌
  ██    █▄▀▄▀▄▄█▀ ▄▀ ▄▀▄▀▄▀█   ██
  ▐█▌ ▀▄█████▀▄▄▀▀▄▄▀▄▀▄▀▄▀█  ▐█▌
   ██▌▀████▀██▄▄▀▀▄▄▀▄▀▄▀▄█▀ ▐██
    ██▌▀█▀▀█▄▀▀▄▀▀▄▄▀▄█▄▄█▀ ▐██
     ██▌ ▀  ▀███▄▄▄█████▀  ▐██
      ██▄      ▀▀▀▀▀      ▄██
       ▀██▄             ▄██▀
         ▀██▄         ▄██▀
           ▀██▄     ▄██▀
             ▀███▄███▀
               ▀███▀
.DeepOnion.
★ ★ ★ ★ ★  .❱❱❱ JOIN AIRDROP NOW!.
TOR INTEGRATED & SECURED
★  Your Anonymity Guaranteed
★  Your Assets Secured by TOR
★  Guard Your Privacy!
|Bitcointalk
Reddit
Telegram
|                        ▄▄▀▄▄▀▄▄▀▄▀▀
                    ▄▄██▀█▀▄▀▀▀
                  ▄██▄█▄██▀
                ▄██████▀
              ▄██████▀
  ▄█▄▄▄▄▄▄▄▄▄██████▀
██████▀▀▀▀▀██████▀
 ▀█████  ▄███████
  ████████████▀██
  ██▀███████▀  ██
  ██ ▀████▀    ██
  ██   ▀▀      ██
  ▀█████████████▀
notlist3d
Legendary
*
Offline Offline

Activity: 1456
Merit: 1000



View Profile
July 15, 2013, 02:09:06 PM
 #553

When adding a payment method (either Credit card or Paypal) there's no place to put a coupon code. Is the promotion gone?


Yes it is gone.
notlist3d
Legendary
*
Offline Offline

Activity: 1456
Merit: 1000



View Profile
July 15, 2013, 02:19:57 PM
 #554

Any help with I get a error when trying to use "mingw-get install mingw32-gmp"  .  Specifically "mingw-get: command not found.  Thanks!
itod
Legendary
*
Offline Offline

Activity: 1974
Merit: 1076


^ Will code for Bitcoins


View Profile
July 15, 2013, 02:58:24 PM
 #555

is anyone else getting compiler errors with the mikaelh2 build?
Code:
In file included from main.cpp:16:0:
prime.h:10:17: fatal error: gmp.h: No such file or directory
compilation terminated.
make: *** [obj/mail.o] Error 1

sudo apt-get install libgmp-dev
subwolf
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
July 15, 2013, 05:07:50 PM
 #556

Last found block earlier today got me 12.78 XPM, and the difficulty is heading towards 9. Quickly becoming too expensive to run without specialist hardware or GPU power, I imagine in a week or two the average block will be worth about 6 XPM and too difficult to find without a whole lot of luck.
n4ru
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250



View Profile
July 15, 2013, 05:44:19 PM
 #557

Last found block earlier today got me 12.78 XPM, and the difficulty is heading towards 9. Quickly becoming too expensive to run without specialist hardware or GPU power, I imagine in a week or two the average block will be worth about 6 XPM and too difficult to find without a whole lot of luck.
We have a very, very long time to go before the block reward hits 6 XPM.
adambeazley
Newbie
*
Offline Offline

Activity: 17
Merit: 0



View Profile WWW
July 15, 2013, 05:52:16 PM
 #558

How do i replace the ancient version with the new one, without delete/recreate my droplet? And keeping the same wallet


I replace it.  Here, lete me help you out some on linux.  I move the old files out and then create a new section.

Quote
primecoind stop
cd ~
mv primecoin old4
git clone https://github.com/mikaelh2/primecoin

cd ~/primecoin/src
make -f makefile.unix USE_UPNP=-
mkdir ~/.primecoin
echo "rpcuser=miner2
rpcpassword=test2
gen=1" > ~/.primecoin/primecoin.conf
sudo mv primecoind /usr/local/bin/.

primecoind --daemon



You need to do "mingw-get install mingw32-gmp" before compiling, else you get this error message:

Code:
In file included from main.cpp:16:0:
prime.h:10:17: fatal error: gmp.h: No such file or directory
compilation terminated.
make: *** [obj/mail.o] Error 1


I cannot get mingw installed.... mingw-get is not a valid command.
downloaded the tar.zx, unpacked, but the make -f Makefile doesnt seem to do anything.
cant figure this out, been googling all day
subwolf
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
July 15, 2013, 05:54:07 PM
 #559

We have a very, very long time to go before the block reward hits 6 XPM.

I dunno, reward was 15 XPM yesterday.
blackboy
Member
**
Offline Offline

Activity: 109
Merit: 16



View Profile WWW
July 15, 2013, 06:02:25 PM
 #560


Hey, all setup and running now!



I have 10 droplets yielding about 300pps each. How much could I make daily with my setup?

Resistance is futile. Embrace cryptocurrencies.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 [28] 29 30 31 32 33 34 35 36 37 38 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!