Search content
Sort by

Showing 5 of 5 results by lubuzzo
Post
Topic
Board Altcoin Discussion
Re: Cryptocurrencies with SegWit and LN-style off-chain payment solutions
by
lubuzzo
on 09/08/2018, 20:12:46 UTC
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [CHC] Chaincoin - Network Upgrade 16.1 - SegWit Locked In
by
lubuzzo
on 06/08/2018, 15:40:30 UTC
People really need to learn to configure their masternodes correctly...
https://abload.de/img/screenshot2018-08-02amzfiq.png

 Undecided

People need understand the problem:

- New start required: normally means there are some problem with the daemon (in vps), need check if the Core is running. Not just give a start in local wallet

- Sentinel ping expired: means that there are something wrong with Sentinel (in the "old" version, that is running into vps and need check the cronjob)
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [CHC] Chaincoin - Network Upgrade 16.1 - SegWit Activation in Progress
by
lubuzzo
on 26/07/2018, 10:05:03 UTC
Can someone help me please , my chaincoin.conf is :

rpcuser=xxxxxxx
rpcpassword=xxxxxx
rpcallowip=127.0.0.1
server=1
daemon=1
logtimestamps=1
maxconnection=256
externalip=X.X.X.X
mnconflock=0
listen=1
masternode=1
masternodeprivkey=XXXXXXX


And my masternode don't work cause of sentinel error ...... what i had to do for this working Huh

Try installing sentinel...  https://github.com/chaincoin/sentinel
I am using windows and there is no sentinel.exe

Sentinel is written in python. This can basically run on Windows but you'll need to find a hack to run it every minute. Since running a MN on Win is economically pointless, there's no development done or planned to create Win tools for that. Instead, the better solution is to run the Sentinel from any Linux (or OSX) based system and just let it serve the Win node.

Windows has Task Scheduler (like Linux has crontab), you'll need something like: https://stackoverflow.com/a/4250516

But keep in mind that is an untested procedure - I don't know anyone who is running a mn at Windows
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [CHC] Chaincoin - Network Upgrade 16.1 - SegWit Activation in Progress
by
lubuzzo
on 13/07/2018, 18:22:27 UTC

i am trying to compile chaincoin V16.1 on my raspberry pi 2 (debian Cool and got this error

-----
  CXX      libbitcoin_wallet_a-privatesend-client.o
privatesend-client.cpp: In member function ‘void CPrivateSendClient::ProcessMessage(CNode*, const string&, CDataStream&, CConnman*)’:
privatesend-client.cpp:57:51: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         if(dsq.nInputCount < 0 || dsq.nInputCount > PRIVATESEND_ENTRY_MAX_SIZE) return;
                                                   ^
privatesend-client.cpp: In member function ‘bool CPrivateSendClient::PrepareDenominate(int, int, std::string&, std::vector&, std::vector&)’:
privatesend-client.cpp:1172:120: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     if (CPrivateSend::GetDenominations(vecTxOutRet) != nSessionDenom || (nSessionInputCount != 0 && vecTxOutRet.size() != nSessionInputCount)) {
                                                                                                                        ^
privatesend-client.cpp: In member function ‘bool CPrivateSendClient::MakeCollateralAmounts(const CompactTallyItem&, bool, CConnman*)’:
privatesend-client.cpp:1226:15: error: no matching function for call to ‘CWalletTx::CWalletTx()’
     CWalletTx wtx;
               ^
privatesend-client.cpp:1226:15: note: candidates are:
In file included from ./privatesend-client.h:10:0,
                 from privatesend-client.cpp:4:
./wallet/wallet.h:379:5: note: CWalletTx::CWalletTx(const CWallet*, CTransactionRef)
     CWalletTx(const CWallet* pwalletIn, CTransactionRef arg) : CMerkleTx(std::move(arg))
     ^
./wallet/wallet.h:379:5: note:   candidate expects 2 arguments, 0 provided
./wallet/wallet.h:298:7: note: CWalletTx::CWalletTx(const CWalletTx&)
 class CWalletTx : public CMerkleTx
./wallet/wallet.h:298:7: note:   candidate expects 1 argument, 0 provided
./wallet/wallet.h:298:7: note: CWalletTx::CWalletTx(CWalletTx&&)
./wallet/wallet.h:298:7: note:   candidate expects 1 argument, 0 provided
privatesend-client.cpp: In member function ‘bool CPrivateSendClient::CreateDenominated(const CompactTallyItem&, bool, CConnman*)’:
privatesend-client.cpp:1393:15: error: no matching function for call to ‘CWalletTx::CWalletTx()’
     CWalletTx wtx;
               ^
privatesend-client.cpp:1393:15: note: candidates are:
In file included from ./privatesend-client.h:10:0,
                 from privatesend-client.cpp:4:
./wallet/wallet.h:379:5: note: CWalletTx::CWalletTx(const CWallet*, CTransactionRef)
     CWalletTx(const CWallet* pwalletIn, CTransactionRef arg) : CMerkleTx(std::move(arg))
./wallet/wallet.h:379:5: note:   candidate expects 2 arguments, 0 provided
./wallet/wallet.h:298:7: note: CWalletTx::CWalletTx(const CWalletTx&)
 class CWalletTx : public CMerkleTx
       ^
./wallet/wallet.h:298:7: note:   candidate expects 1 argument, 0 provided
./wallet/wallet.h:298:7: note: CWalletTx::CWalletTx(CWalletTx&&)
./wallet/wallet.h:298:7: note:   candidate expects 1 argument, 0 provided
Makefile:7757: recipe for target 'libbitcoin_wallet_a-privatesend-client.o' failed
make[2]: *** [libbitcoin_wallet_a-privatesend-client.o] Error 1
make[2]: Leaving directory '/opt/zzz_coins/chaincoin/src'
Makefile:11120: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory '/opt/zzz_coins/chaincoin/src'
Makefile:736: recipe for target 'all-recursive' failed
make: *** [all-recursive] Error 1

-----

any idea how to solve ?


I think you're trying compile the master branch, this is the development branch.

Use:

Quote
git clone https://github.com/chaincoin/chaincoin.git -b 0.16 --single-branch

instead
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [CHC] Chaincoin - Network Upgrade 16.1 - SegWit Activation in Progress
by
lubuzzo
on 13/07/2018, 18:12:42 UTC
Please give me advice! From about 4 to 5 months I have a working masternode under Windows. Since the new 16.1 wallet is installed, I can not run the masternode. If the masternode=0 in the chaincoin.conf file, the wallet is loaded and running normally, but if I put masternode=0, the wallet does not want to load and every time show this message  "You need to rebuild the database using -reindex to change -txindex." This is my full chaincoin.conf file.
-- chaincoin.conf --
rpcuser=*************
rpcpassword=******************
rpcport=11995
rpcallowip=127.0.0.1
logtimestamps=1
daemon=1
server=1
listen=1
masternode=1
mnconflock=0
externalip=***.***.***.***
bind=Local IP
maxconnections=256
masternodeaddr=External IP:11994
masternodeprivkey=*************************************
------
Note: I've already tested Sentinel for Windows from Innovacoin masternode and I think it will work well.
Any ideas where am I wrong?

Set at yout chaincoin.conf the txindex=1, in the first run you'll need rebuild the database so you need use reindex=1. (But you'll need remove the reindex=1 after the database be resynced.

Another approach is: set txindex=1 in you configuration file, and run the daemon with the flag -reindex

Remeber: you'll need stop your daemon (chaincoin-cli stop) first.