Pages:
Author

Topic: ★★★ PandaCoin [PND] ★★★ 2021 Network Update - page 52. (Read 65019 times)

newbie
Activity: 31
Merit: 0
Here's another amazing report

Donation!

07/23 - 1000 PND
07/24 - 100000 PND

Current balance: 101084.4666 PND

Thanks!

If you want to donate - do it right now: PSUWiir9J5FzVRkJspPgAHszi6TYTQ4FFZ

Who are you and where is your faucet?

This guy is not part of the dev team, so please be cautious!
sr. member
Activity: 490
Merit: 250
The important thing here is that the sources are not compatibile with the latest OpenSSL 1.1, and need to link against the older OpenSSL 1.0.

The actual paths will certailny differ on different systems, and there's probably a lot of other things to install first, and the names of those things vary widly on diffrent distros.

The big thing would be to upgrade the sources to use the new OpenSSL, but that could prove to be a quite important commitment in itself. I think it'd be best to just provide precopiled linux binaries besides sources (please, fix the downloads section of the main site!)

Cheers!
sr. member
Activity: 575
Merit: 250
PND DevTeam
Great!

I was able to build and run the latest version.

I cloned the repo, and it seems like I aldready had most of the dependencies installed. I used Qt Creator, and added

Code:
OPENSSL_INCLUDE_PATH = /usr/include/openssl-1.0
OPENSSL_LIB_PATH = /usr/lib/openssl-1.0
USE_UPNP=-

to the project file, and it did it.

Thanks!
Nice to hear mtrycz!  I will make a note of that for our guide and for helping others.
sr. member
Activity: 490
Merit: 250
Great!

I was able to build and run the latest version.

I cloned the repo, and it seems like I aldready had most of the dependencies installed. I used Qt Creator, and added

Code:
OPENSSL_INCLUDE_PATH = /usr/include/openssl-1.0
OPENSSL_LIB_PATH = /usr/lib/openssl-1.0
USE_UPNP=-

to the project file, and it did it.

Thanks!
sr. member
Activity: 575
Merit: 250
PND DevTeam
ElectrumPND wallet 2.7.12 - 2.81 servers : electrum-pnd.cryptodepot.org and server1.cryptodepot.org not online today?
server1.cryptodepot.org did work most of the time.
Thanks for the heads up, you should be back to connected using server1.cryptodepot.org now.
I restarted server1.cryptodepot.org and my Pandacoin electrum wallet connected right away again.  Sorry for the inconvenience, we are re-organizing on electrum-pnd.cryptodepot.org.

Edited: Both servers are Back now Smiley
sr. member
Activity: 575
Merit: 250
PND DevTeam
So to have the latest wallet on linux I just need to clone the master and compile it? Or is the latest release on some other branch?
Yes mtrycz, just clone the master from here https://github.com/DigitalPandacoin/pandacoin and you will have our latest version.
member
Activity: 75
Merit: 10
ElectrumPND wallet 2.7.12 - 2.81 servers : electrum-pnd.cryptodepot.org and server1.cryptodepot.org not online today?
server1.cryptodepot.org did work most of the time.
sr. member
Activity: 490
Merit: 250
So to have the latest wallet on linux I just need to clone the master and compile it? Or is the latest release on some other branch?
sr. member
Activity: 575
Merit: 250
PND DevTeam
I compiled on an Debian 8 Installation.
@jommy99
Is the Pandabank working on a Linux System?
I think cryptopia will use the command line Version - pandacoind

Yes cryptopia will be using the command line daemon, I noticed their reply to my upgrade request a little late and we are on opposite timezones.  I did look into what likely is happening and think we have had to roll back one of our new changes. I let them know we made a correction in miner.cpp and to try again, and if there is any difficulty I can help.

We compiled and found one of the changes we made could cause a compilation error in some cases.  We made a small correction in the code and committed it on our github. I compiled fine using ubuntu 17.04 64 bit  using gcc 6.3.0 BOOST_LIB_VERSION 1_62 this is what we are using for our latest Virtual PandaBank builds. We also tested the GUI PandaBank Pandacoin-qt.

Prerequisites

sudo apt-get install qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb++-dev
sudo apt-get install  libminiupnpc-dev

Hope this helps some, I can help anyone who is having trouble and will work on better guides to help document the process.


member
Activity: 70
Merit: 10
All In One Social
Heard there are some problems on the coin?
Wish to get it solved soon!!
God bless the Devs'
jr. member
Activity: 50
Merit: 1
I compiled on an Debian 8 Installation.
@jommy99
Is the Pandabank working on a Linux System?
I think cryptopia will use the command line Version - pandacoind
jr. member
Activity: 50
Merit: 1
My first Compile for pandacoind and pandacoin-qt I did on an Rapsberry Pi was an 3.0.2 and works good.

The Actual Version seems to be 3.0.5

I try to compile the pandacoind (3.0.5) from
https://github.com/DigitalPandaCoin/PandaCoin
and get the Following Error:
###################################################################################
miner.cpp: In function ‘CBlock* CreateNewBlock(CWallet*, bool, int64_t*)’:
miner.cpp:117:5: error: ‘unique_ptr’ was not declared in this scope
     unique_ptr pblock(new CBlock());
     ^
miner.cpp:117:22: error: expected primary-expression before ‘>’ token
     unique_ptr pblock(new CBlock());
                      ^
miner.cpp:117:43: error: ‘pblock’ was not declared in this scope
     unique_ptr pblock(new CBlock());
                                           ^
miner.cpp: In function ‘void StakeMiner(CWallet*)’:
miner.cpp:572:13: error: ‘unique_ptr’ was not declared in this scope
             unique_ptr pblock(CreateNewBlock(pwallet, true, &nFees));
             ^
miner.cpp:572:30: error: expected primary-expression before ‘>’ token
             unique_ptr pblock(CreateNewBlock(pwallet, true, &nFees));
                              ^
miner.cpp:572:76: error: ‘pblock’ was not declared in this scope
             unique_ptr pblock(CreateNewBlock(pwallet, true, &nFees));
                                                                            ^
miner.cpp: In function ‘CBlock* CreateNewBlock(CWallet*, bool, int64_t*)’:
miner.cpp:381:1: warning: control reaches end of non-void function [-Wreturn-type]
 }
 ^
makefile.unix:202: recipe for target 'obj/miner.o' failed
make: *** [obj/miner.o] Error 1
#####################################################################################
Also I try to compile the pandacoin-qt from
https://github.com/DigitalPandaCoin/PandaCoin
and get the Following Error:

#####################################################################################
src/qt/richtextdelegate.cpp: In member function ‘virtual void RichTextDelegate::paint(QPainter*, const QStyleOptionViewItem&, const QModelIndex&) const’:
src/qt/richtextdelegate.cpp:45:30: error: ‘class QStyleOptionViewItem’ has no member named ‘widget’
     QStyle *style = optionV4.widget? optionV4.widget->style() : QApplication::style();
                              ^
src/qt/richtextdelegate.cpp:45:47: error: ‘class QStyleOptionViewItem’ has no member named ‘widget’
     QStyle *style = optionV4.widget? optionV4.widget->style() : QApplication::style();
                                               ^
src/qt/richtextdelegate.cpp:51:14: error: ‘class QStyleOptionViewItem’ has no member named ‘text’
     optionV4.text = QString();
              ^
src/qt/richtextdelegate.cpp: In member function ‘virtual QSize RichTextDelegate::sizeHint(const QStyleOptionViewItem&, const QModelIndex&) const’:
src/qt/richtextdelegate.cpp:107:26: error: ‘class QStyleOptionViewItem’ has no member named ‘text’
     doc.setHtml(optionV4.text);
                          ^
Makefile:1732: recipe for target 'build/richtextdelegate.o' failed
make: *** [build/richtextdelegate.o] Error 1
######################################################################################
Any Idea what the Problem could be?


sr. member
Activity: 575
Merit: 250
PND DevTeam
On Cryptopia, the "Coin Info" Section shows that the Panda(PND) Wallet is in Maintenance.
Click on the Site shows the the Following:
"New wallet does not compile"
Thanks for noticing this, I checked my support ticket for the wallet upgrade and offer of help and they did reply yesterday (I missed it) that they were having trouble.  I think we have been able to see what was causing their compiling error and have asked them to try again. Looks like when we come out of maintenance soon they will be using our latest PandaBank.
jr. member
Activity: 50
Merit: 1
On Cryptopia, the "Coin Info" Section shows that the Panda(PND) Wallet is in Maintenance.
Click on the Site shows the the Following:
"New wallet does not compile"
newbie
Activity: 31
Merit: 0
Updates

PandaBank

Latest updated windows PandaBank, with more nodes and updated checkpoints, currently uploading our updated installer with the latest blockchain snapshot.

Digital Pandacoin – PandaBank QT 3.0.5.3 standalone for Windows. 22MB http://dev.digitalpandacoin.org/index.php/download-2/
Checksum: FAA424CD81D89E8FB614F63A05D44AF190066CF4FCE09387252B9B40B008564D
http://onlinemd5.com can be used to verify the above SHA-256 checksum.

Cryptopia

Our Digital Pandacoin PND is now active and available for tipping at cryptopia, they are still doing lots of maintenance.  Jommy99 put in a support ticket, offered any help if needed and asked if it might be a good time for them to upgrade to our latest version.

sr. member
Activity: 308
Merit: 250
cryptopia wallet still down.  Huh

Open a support ticket with Cryptopia. If enough people open tickets they will more likely move faster on getting the wallet running again.

I'll do that myselft too. This coin and its developers deserve a longer ride. That said, the price is undoubtely a great opportunity!
full member
Activity: 164
Merit: 100
cryptopia wallet still down.  Huh

Open a support ticket with Cryptopia. If enough people open tickets they will more likely move faster on getting the wallet running again.
sr. member
Activity: 392
Merit: 250
my magic is growing strong[er]


A Panda is to be loved. :~*  a nice wallet with cool features.

sr. member
Activity: 575
Merit: 250
PND DevTeam
PandaCoin Blockchain Snapshot updated to 07-19-2017 .

https://www.cryptopia.co.nz/Forum/Thread/1349?postId=7900


 Cool

Now this is some kind of a problem. A 1.8 GB blockchain seems too much maybe? Is it necesary to download the whole chain again?

I had the wallet up and running the whole night and just a 33% the blockchain was processed. If directly downloaded, it takes seconds and works fine.

No need to download the whole chain again, but for those looking for a fast installation including the updated blockchain we are updating our windows installer today.
It is much faster to download the snapshot than it is to sync manually, so we find the snapshot a very useful service for new installations and those looking to update their PandaBank blockchain quickly.
sr. member
Activity: 308
Merit: 250
PandaCoin Blockchain Snapshot updated to 07-19-2017 .

https://www.cryptopia.co.nz/Forum/Thread/1349?postId=7900


 Cool

Now this is some kind of a problem. A 1.8 GB blockchain seems too much maybe? Is it necesary to download the whole chain again?

I had the wallet up and running the whole night and just a 33% the blockchain was processed. If directly downloaded, it takes seconds and works fine.
Pages:
Jump to: