Bitcoin Forum
May 04, 2024, 10:56:40 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: BlackCoin mining (Raspberry Pi 3 model B+)  (Read 599 times)
Qfox (OP)
Member
**
Offline Offline

Activity: 151
Merit: 12

等価交換


View Profile
August 26, 2018, 10:45:25 AM
Last edit: September 28, 2018, 11:40:42 AM by Qfox
Merited by muleroaa (1), jillscarbrough (1)
 #1

How to using Raspberry Pi 3 B+ (mining BlackCoin)

Part 1
FORMAT YOUR SD CARD


It is best to format your SD card before copying the NOOBS files onto it. To do this:

1. Visit the https://www.sdcard.org SD Association’s website and download SD Formatter 4.0 for either Windows or Mac.

2. Follow the instructions to install the software.

3. Insert your SD card into the computer or laptop’s SD card reader and make a note of the drive letter allocated to it, e.g. G:/

4. In SD Formatter, select the drive letter for your SD card and format it.


DOWNLOAD

We recommend using an SD card with a minimum capacity of 8GB.

1. Using a computer with an SD card reader, visit the Downloads page.

2. Click on NOOBS, then click on the Download ZIP button under ‘NOOBS (offline and network install)’, and select a folder to save it to.

3. Extract the files from the zip.

DRAG AND DROP NOOBS FILES

1. Once your SD card has been formatted, drag all the files in the extracted NOOBS folder and drop them onto the SD card drive.

2. The necessary files will then be transferred to your SD card.

3. When this process has finished, safely remove the SD card and insert it into your Raspberry Pi.

FIRST BOOT

1. Plug in your keyboard, mouse, and monitor cables.

2. Now plug the USB power cable into your Pi.

3. Your Raspberry Pi will boot, and a window will appear with a list of different operating systems that you can install. We recommend that you use Raspbian – tick the box next to Raspbian and click on Install.

4. Raspbian will then run through its installation process. Note that this can take a while.

5. When the install process has completed, the Raspberry Pi configuration menu (raspi-config) will load. Here you are able to set the time and date for your region, enable a Raspberry Pi camera board, or even create users. You can exit this menu by using Tab on your keyboard to move to Finish.

LOGGING IN AND ACCESSING THE GRAPHICAL USER INTERFACE

The default login for Raspbian is username pi with the password raspberry. Note that you will not see any writing appear when you type the password. This is a security feature in Linux.

To load the graphical user interface, type startx and press Enter.

Refer to our documentation for more information:https://www.raspberrypi.org/documentation/installation/noobs.md


Part2

Install BlackCoin Lore wallet for Raspberry Pi and Syncing

Open the terminal from the taskbar

To create a swapfile on your Raspberry Pi you can use the following commands:

1) <sudo su -c 'echo "CONF_SWAPSIZE=2048" > /etc/dphys-swapfile'>

2) <sudo dphys-swapfile setup>

After creating the swapfile, you have to activate it once by using this command:

3) <sudo dphys-swapfile swapon>


Install Blackcoin Lore wallet

1. Now we are going to install the Blackcoin Wallet for ARM. Download the arm version of the Blackcoin Lore wallet from: https://github.com/janko33bd/bitcoin/releases/tag/v2.12.1.0-3d52c88

2. Next open the terminal from the taskbar and type <mkdir Blackcoin-Lore> which will create a folder path under the Pi user. Once this is done you can close the terminal.

3. Open up the File manager go to downloads and unzip the arm32.zip file.

4. Open the unzipped folder and copy the four files from contained within to the Blackcoin-Lore file you created.

5. Once the files have copied over. We are going to download the bootstrap to the computer to speed up the sync. Download the bootstrap from https://mega.nz/#!R64nQARY!o8Ovl-2OLWMF6quSfpEXPEbcsmHiLhPegSnaHQXgR6I or https://mega.nz/#F!ru5lTJSD!3Ysa0Whk4Nyztc9xfu8pjQ,(new version created by Michel elder)

6. Once you have the bootstrap downloaded extract the file and then place it in the Blackcoin-Lore directory. You can do this by dragging and dropping the file in the file explorer.

7. Open the terminal from the taskbar.

8. In the terminal type in <cd Blackcoin-Lore> to enter the Blackcoin-Lore directory.

9. We now need to change the permissions on the files type in <chmod u+x lored> then type in <chmod u+x lore-cli>. This should allow you to access and run the files.

10. Next type in <if [ $(whoami) == 'root' ]; then echo "NO don't run as root"; else ./lored -loadblock=/home/pi/Blackcoin-Lore/bootstrap.dat; fi> to start the node. This will begin the process of syncing the node with the network. I will warn you that this process will take awhile. The reason we are running this command is to ensure that we are not running the node as the root user.

11. It is also important to note that once you start running <./lored> the terminal window that was used will no longer be able to be used to enter commands. So once it starts you can either close out that terminal window or just leave it up.

12. In order to make sure we are syncing we have a couple options. We can either tail the program or we can use the getinfo command. Use whichever you think is easiest.

13. Once a new terminal tab opens type in <cd> to take yourself to the main directory. Now we are going to type in <tail -f \.lore/debug.log> to make sure the node is running and syncing correctly. As long as the process is running this terminal window will update and continue syncing.

14. To use getinfo open a new terminal and make sure you are in Blackcoin-Lore. If not in the Blackcoin-Lore folder navigate to it using <cd Blackcoin-Lore> and then type in <./lore-cli getinfo>

15. Congratulations you are now running a full node!



Importing your Private Key and Staking


1. Once your node has finished syncing up the the current block height we need import are private key to access our current funds.

2. Open a terminal from the taskbar. Type in <cd Blackcoin-Lore> to enter the Blackcoin-Lore directory.

3. Now we need to either import a private key or generate a new address. Please use whichever method you like.

4. When we import a private key we are going to need the private key of the wallet and also we are going to want an account name for it. The account name can be whatever you want. I personally use main for my primary address.Once we have the private key we want to type in this command <./lore-cli importprivkey YourPrivateKeyGoesHere AccountName> and hit enter. Once this begins the program will rescan the blockchain to find any transactions associated with that private key and import them.

5. If you don’t have a private key we are going to generate a new address and give it a name. To do this we type in <./lore-cli getaccountaddress Main>

6. Once that is done we can check our wallet info using <./lore-cli getwalletinfo>

7. This will show you your wallet version, balance, unconfirmed balance, and other information.

8. Once you have confirmed your information is correct we can then get ready to start staking.

9. First thing we need to do is encrypt our wallet. Type in the command <./lore-cli encryptwallet YourPassPhrase>

10. Once this is done the node itself will stop and will require you to restart it. But before we do that we need to create a config file and add a command to enable staking.

11. Once the node is stop we  want to move back to the home directory. So in the terminal type in <cd>

12. Once we are in the home directory we want to type in <cd .lore> to enter the lore directory.

13. In order to start staking easily we are going to make a configure file to start staking once the wallet/node is up and running. In the terminal type in <sudo nano lore.conf> to open and create a configuration file.

14. Once it opens type in <staking=1> in the file and then hit <CTRL + O> to write out the file. The screen will change slightly and ask you to confirm the name of the file. As long as it says lore.conf you can hit enter. To exit the nano editor hit <CTRL + X>

15. Now in the terminal type in <cd> to return to the home directory. From their navigate back to the Blackcoin-Lore directory by typing in <cd Blackcoin-Lore> into the terminal.

16. Once you are back in the Blackcoin-Lore directory we want to restart the node. So in this terminal type in <./lored> or <./lored -daemon> to start the node again.

17. Once the node has started up you can open a new terminal window in the Blackcoin-Lore directory. In order to check that you are staking you can type in <./lore-cli getstakinginfo> and the first line should return as True which lets you know that you can now stake.

18. In the terminal we no have to type in the command to let us stake. The command syntax is broken up into three parts. Your passphrase, the amount of time in seconds you want to unlock the wallet, and a boolean. For the boolean variable if you want to stake you set it to true and if you don’t you change it to false.

19. So if you wanted to stake for 24 hours you would type in  the command, your passphrase, 86400 and true.
 
20. Example: <./lore-cli walletpassphrase YourPassPhraseHere 86400 true> and now your wallet would stake for 24 hours.


if you need help,please visit Blackcoin.org
https://blackcoin.org

Janko grand elder original article:(How to setup SSD or other external harddisk and all step command)
https://docs.google.com/document/d/1hn2nz_3DyF3TeEYCW4h44Sz2rAqQ_yW0xy9oVu-mJBY/mobilebasic#heading=h.w166tsnzp7cu


Useful command:-

0. Terminal main directory to Blackcoin Lore directory:cd Blackcoin-Lore

1. Start the blackcoin node again:./lored or ./lored -daemon

2. Check status info:./lore-cli getinfo

3. Check wallet info:./lore-cli getwalletinfo

4. Check staking info:./lore-cli getstakinginfo

5. Start staking blackcoin:./lore-cli walletpassphrase <yourwalletpassphrase> 999999999 true
(999999999 is staking time for 31years)

6. Stop staking blackcoin:./lore-cli walletpassphrase <yourwalletpassphrase> 999999999 false
(after stop staking blackcoin,then you could send blackcoin to address)

7. Send blackcoin to address:./lore-cli sendtoaddress <blackcoin address> <amount>

8. Get your private key:./lore-cli dumpprivkey <your blackcoin address>

9. Get your back up wallet files:./lore-cli dumpwallet <file name>

10. Check the node info:tail -f \.lore/debug.log
(this command use in terminal main directory)

11. Check other commands:./lore-cli help


I wish could help newbie easy staking/mining Blackcoin

Blackcoin max transaction per day 1,440,000(more than Ethereum,ETH max 13transaction per sec)

Blackcoin transaction speed around 60sec (faster than bitcoin)

join our community,secure our good project network Wink




























There are several different types of Bitcoin clients. The most secure are full nodes like Bitcoin Core, which will follow the rules of the network no matter what miners do. Even if every miner decided to create 1000 bitcoins per block, full nodes would stick to the rules and reject those blocks.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714820200
Hero Member
*
Offline Offline

Posts: 1714820200

View Profile Personal Message (Offline)

Ignore
1714820200
Reply with quote  #2

1714820200
Report to moderator
1714820200
Hero Member
*
Offline Offline

Posts: 1714820200

View Profile Personal Message (Offline)

Ignore
1714820200
Reply with quote  #2

1714820200
Report to moderator
1714820200
Hero Member
*
Offline Offline

Posts: 1714820200

View Profile Personal Message (Offline)

Ignore
1714820200
Reply with quote  #2

1714820200
Report to moderator
muleroaa
Hero Member
*****
Offline Offline

Activity: 924
Merit: 526


GIF by SOCIFI


View Profile
August 26, 2018, 09:32:56 PM
 #2

Nice guide, thanks for putting it together. I was thinking of getting a RPI3 so this will come in handy!

                ▄▄▄▄▄▄▄▄▄▄                          ▄▄▄▄▄▄▄▄▄▄
             █████████████████                   █████████████████
         █████████████████████████           █████████████████████████
       █████████████████████████████       █████████████████████████████
     █████████████████████████████████   █████████████████████████████████
   ████████████▀           ▀██████████████████████████████████████████████
  ████████████▄▄███████████▄▄█████████▓▓▓███████████████████████████████████
 ▐██████████████▀         ▀██████████▓▓▓▓████████████████████████████████████
 ██████████████▄▄█████████▄▄█████████▓▓▓▓▓████████████████████████████████████
▐█████████████████▀      ▀██████████▓▓▓▓▓▓████████████████████████████████████▌
▐████████████████▄▄██████▄▄█████████▓▓▓▓▓▓▓███████████████████████████████████▌
▐██████████████████      ███████████▓▓▓▓▓▓▓███████████████████████████████████▌
▐██████████████████ ████ ████████████▓▓▓▓▓████████████████████████████████████
 ██████████████████ ████ ████████████▓▓▓▓▓███████████████    ████████████████
  █████████████████ ████ █████████████▓▓▓████████████████   █████████████   █
   ████████████████      ███████████████████████████████    ███████████
    ██████████████████████████████████ ██████████████████     ████████
      ███████████████████████████████     █████████████████
        ███████████████████████████         █████████████████▓
           ████████████████████                ███████████████████▓
               ▀▀▀▀▀▀▀▀▀▀▀▀▀                       ▀▀▀▀▀▀▀▀▀▀▀▀▀

▄▄▄████████▄▄▄
▄▄██████████████████▄▄
▄████████████████████████▄
▄████████████████████████████▄
████████████████████████████████
▓████████████████████████████████▓
███████████████████████▒░███████████
▄█████████████████▒░      ███████████▄
█████████████░░          ░████████████
█████████░              ░█████████████
██████████▓░░          ░██████████████
██████████████▓░       ███████████████
▀███████████████▒     ░██████████████▀
████████████████▒   ░███████████████
████████████████░ ░███████████████
████████████████████████████████
▀████████████████████████████▀
▀████████████████████████▀
▀▀██████████████████▀▀
 ▀▀▀████████▀▀▀
.
JOIN OUR
TELEGRAM
michelvankessel
Jr. Member
*
Offline Offline

Activity: 49
Merit: 3


View Profile
August 27, 2018, 08:34:32 AM
 #3

I have created a new bootstrap.dat file (August 27th 2018). I have tested it with the Blackcoin Legacy client and works fine, just really slow import!. Will test it later this week with Lore on RPi3.

https://mega.nz/#F!ru5lTJSD!3Ysa0Whk4Nyztc9xfu8pjQ


Michel
vlad230
Sr. Member
****
Offline Offline

Activity: 616
Merit: 279



View Profile
August 27, 2018, 08:45:18 AM
 #4

Thanks for the detailed guide. Smiley I haven't tried using Raspberry boards for mining since I've always considered them too weak (hardware wise) for this activity.

What kind of hash rates are you getting with it and how many coins per day?
muleroaa
Hero Member
*****
Offline Offline

Activity: 924
Merit: 526


GIF by SOCIFI


View Profile
August 27, 2018, 05:44:32 PM
 #5

Thanks for the detailed guide. Smiley I haven't tried using Raspberry boards for mining since I've always considered them too weak (hardware wise) for this activity.

What kind of hash rates are you getting with it and how many coins per day?

This is not meant to be for Proof of Work mining, rather being a node in a Proof of Stake network. For keeping a node online and having your coins in your wallet unlocked for staking, you will gain rewards based on the amount of coins that you hold vs the total amount of coins that are being staked on the network. This process is not hardware intensive as supposed to Proof of Work mining, that's why this can run perfectly on a Raspberry Pi, you could even run multiple coin wallets and have them staking at the same time.

The nominal stake interest for BlackCoin is 1%.

These are some other stats:

Specifications
PoS without coin age
Max reorganization depth: 500 blocks
Block time: 64 seconds
Difficulty retarget: every block
PoS Reward: based on 1% inflation + tx fees
Min transaction fee: 0.0001 BLK
Confirmations: 10, maturity: 500
Min stake confirmations: 500
P2P port: 15714, RPC port: 15715

                ▄▄▄▄▄▄▄▄▄▄                          ▄▄▄▄▄▄▄▄▄▄
             █████████████████                   █████████████████
         █████████████████████████           █████████████████████████
       █████████████████████████████       █████████████████████████████
     █████████████████████████████████   █████████████████████████████████
   ████████████▀           ▀██████████████████████████████████████████████
  ████████████▄▄███████████▄▄█████████▓▓▓███████████████████████████████████
 ▐██████████████▀         ▀██████████▓▓▓▓████████████████████████████████████
 ██████████████▄▄█████████▄▄█████████▓▓▓▓▓████████████████████████████████████
▐█████████████████▀      ▀██████████▓▓▓▓▓▓████████████████████████████████████▌
▐████████████████▄▄██████▄▄█████████▓▓▓▓▓▓▓███████████████████████████████████▌
▐██████████████████      ███████████▓▓▓▓▓▓▓███████████████████████████████████▌
▐██████████████████ ████ ████████████▓▓▓▓▓████████████████████████████████████
 ██████████████████ ████ ████████████▓▓▓▓▓███████████████    ████████████████
  █████████████████ ████ █████████████▓▓▓████████████████   █████████████   █
   ████████████████      ███████████████████████████████    ███████████
    ██████████████████████████████████ ██████████████████     ████████
      ███████████████████████████████     █████████████████
        ███████████████████████████         █████████████████▓
           ████████████████████                ███████████████████▓
               ▀▀▀▀▀▀▀▀▀▀▀▀▀                       ▀▀▀▀▀▀▀▀▀▀▀▀▀

▄▄▄████████▄▄▄
▄▄██████████████████▄▄
▄████████████████████████▄
▄████████████████████████████▄
████████████████████████████████
▓████████████████████████████████▓
███████████████████████▒░███████████
▄█████████████████▒░      ███████████▄
█████████████░░          ░████████████
█████████░              ░█████████████
██████████▓░░          ░██████████████
██████████████▓░       ███████████████
▀███████████████▒     ░██████████████▀
████████████████▒   ░███████████████
████████████████░ ░███████████████
████████████████████████████████
▀████████████████████████████▀
▀████████████████████████▀
▀▀██████████████████▀▀
 ▀▀▀████████▀▀▀
.
JOIN OUR
TELEGRAM
Qfox (OP)
Member
**
Offline Offline

Activity: 151
Merit: 12

等価交換


View Profile
August 28, 2018, 11:47:29 AM
 #6

Nice guide, thanks for putting it together. I was thinking of getting a RPI3 so this will come in handy!

thanks for support blackcoin mining~

I have created a new bootstrap.dat file (August 27th 2018). I have tested it with the Blackcoin Legacy client and works fine, just really slow import!. Will test it later this week with Lore on RPi3.

https://mega.nz/#F!ru5lTJSD!3Ysa0Whk4Nyztc9xfu8pjQ


Michel

michel elder,always in Blackcoin Gitter there helping newbie,thank you

Thanks for the detailed guide. Smiley I haven't tried using Raspberry boards for mining since I've always considered them too weak (hardware wise) for this activity.

What kind of hash rates are you getting with it and how many coins per day?

Im telling you when you start using blackcoin you will like blackcoin system. Blackcoin staking never waste energy,blockchain stable,transaction speed faster and smooth.

dragonmike
Hero Member
*****
Offline Offline

Activity: 1274
Merit: 556



View Profile
August 28, 2018, 12:05:40 PM
 #7

I personally think 1% yearly interest from staking is not enough at all for a highly volatile crypto asset.

Bring back the BLK multipool from 2014. At least you gave miners a mean to use pow and get payout in BLK. That would allow a higher staking reward and everybody would be happy.
Qfox (OP)
Member
**
Offline Offline

Activity: 151
Merit: 12

等価交換


View Profile
September 08, 2018, 06:08:43 PM
 #8

I personally think 1% yearly interest from staking is not enough at all for a highly volatile crypto asset.

Bring back the BLK multipool from 2014. At least you gave miners a mean to use pow and get payout in BLK. That would allow a higher staking reward and everybody would be happy.

actually staking rewards more than 1%,you could create ur personal pool ;)ask ur friends buy blk and put it on ur raspberry pi Blackcoin Lore wallet to staking rewards^_^

Geraldo
Sr. Member
****
Offline Offline

Activity: 588
Merit: 272


⭐⭐⭐⭐⭐


View Profile
September 08, 2018, 06:25:51 PM
 #9

@OP

Will, it works on Pi 2?
I have several unused Pi 2, but I keep it in another place (out of my city - a bit far from my current location) That's why I'm asking, maybe you've tried it on Pi 2. If it works, perhaps I'll bring it back here.
Qfox (OP)
Member
**
Offline Offline

Activity: 151
Merit: 12

等価交換


View Profile
September 10, 2018, 10:18:43 AM
 #10

I have created a new bootstrap.dat file (August 27th 2018). I have tested it with the Blackcoin Legacy client and works fine, just really slow import!. Will test it later this week with Lore on RPi3.

https://mega.nz/#F!ru5lTJSD!3Ysa0Whk4Nyztc9xfu8pjQ


Michel

michel elder,ur bootstrap.dat done verify?create torrent file easy for newbie download

Qfox (OP)
Member
**
Offline Offline

Activity: 151
Merit: 12

等価交換


View Profile
September 10, 2018, 10:23:00 AM
 #11

@OP

Will, it works on Pi 2?
I have several unused Pi 2, but I keep it in another place (out of my city - a bit far from my current location) That's why I'm asking, maybe you've tried it on Pi 2. If it works, perhaps I'll bring it back here.

same device,i think no problem,pi 2 maybe slow a bit,using bootstrap saving ur time for running full node Wink

*if you still got problem,you can visit Blackcoin gitter chat,there got many elder willing to help you Wink

michelvankessel
Jr. Member
*
Offline Offline

Activity: 49
Merit: 3


View Profile
September 10, 2018, 11:23:30 AM
 #12

I have created a new bootstrap.dat file (August 27th 2018). I have tested it with the Blackcoin Legacy client and works fine, just really slow import!. Will test it later this week with Lore on RPi3.

https://mega.nz/#F!ru5lTJSD!3Ysa0Whk4Nyztc9xfu8pjQ


Michel

michel elder,ur bootstrap.dat done verify?create torrent file easy for newbie download

yes, verify is done... I have added the SHA265 to the txt file.
cdrx
Full Member
***
Offline Offline

Activity: 441
Merit: 109


View Profile
September 10, 2018, 11:24:06 AM
 #13

Can I mine blackcoin and jsecoin on same Raspberry Pi 3 B ?
anotherlateminer
Legendary
*
Offline Offline

Activity: 1411
Merit: 1003

Bagholder. Hodling shit since 2014


View Profile
September 10, 2018, 06:53:42 PM
 #14

@OP

Will, it works on Pi 2?
I have several unused Pi 2, but I keep it in another place (out of my city - a bit far from my current location) That's why I'm asking, maybe you've tried it on Pi 2. If it works, perhaps I'll bring it back here.
Legacy wallet worked for me on Pi 1, so Pi 2 should be fine too.
perri
Jr. Member
*
Offline Offline

Activity: 215
Merit: 3


View Profile
September 11, 2018, 08:42:17 AM
 #15

Pretty good info, I have Pi 2 and Pi 3, and each has installed Kali, but I've only used both just several times and then now both are unused. I'll try this, and maybe I'll start from Pi 3 according to this tutorials. Thanks, OP.
mindphuq
Member
**
Offline Offline

Activity: 187
Merit: 20


View Profile
September 11, 2018, 11:26:06 PM
 #16

Can I mine blackcoin and jsecoin on same Raspberry Pi 3 B ?

Blackcoin is staked, not really mined. You don't try for hashes so Blackcoin needs very little CPU (not much more than creating an SSL connection, decrypting an email or hashing a file). So you can mine a CPU-miner coin on the same box that runs Blackcoin staking. However what Blackcoin, as any other coin, might need is some RAM. 1GB is maybe a little thin to run many coins on the same box.
cryptodrunk
Member
**
Offline Offline

Activity: 217
Merit: 10


View Profile
September 12, 2018, 12:55:59 AM
 #17

Thank you very much for putting all this information together, the guide is very informative, I have a raspberry pi 3 forgotten without use and I had not seen a step by step guide so complete. Maybe I will try using it with this coin. Thanks and regards.
Qfox (OP)
Member
**
Offline Offline

Activity: 151
Merit: 12

等価交換


View Profile
September 12, 2018, 10:22:47 AM
 #18

I have created a new bootstrap.dat file (August 27th 2018). I have tested it with the Blackcoin Legacy client and works fine, just really slow import!. Will test it later this week with Lore on RPi3.

https://mega.nz/#F!ru5lTJSD!3Ysa0Whk4Nyztc9xfu8pjQ


Michel

michel elder,ur bootstrap.dat done verify?create torrent file easy for newbie download

yes, verify is done... I have added the SHA265 to the txt file.

thank you michel elder Wink

Can I mine blackcoin and jsecoin on same Raspberry Pi 3 B ?

oh yes,we got user staking few wallet on raspberry pi device


perri
Jr. Member
*
Offline Offline

Activity: 215
Merit: 3


View Profile
September 12, 2018, 11:47:28 AM
 #19

Can I mine blackcoin and jsecoin on same Raspberry Pi 3 B ?

oh yes,we got user staking few wallet on raspberry pi device


Means we can stake (installed) few wallets? And doing stacking for several coins, right? It will depend on our storage capacity, can we use the external storage such as FDD or some kind?

Are there any limits?
Qfox (OP)
Member
**
Offline Offline

Activity: 151
Merit: 12

等価交換


View Profile
September 12, 2018, 02:02:20 PM
 #20

Can I mine blackcoin and jsecoin on same Raspberry Pi 3 B ?

oh yes,we got user staking few wallet on raspberry pi device


Means we can stake (installed) few wallets? And doing stacking for several coins, right? It will depend on our storage capacity, can we use the external storage such as FDD or some kind?

Are there any limits?

oh yes,another article got SSD setup. I will update it soon that one created by Blackcoin Janko grand elder Wink

Pages: [1] 2 »  All
  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!