Bitcoin Forum
July 30, 2024, 08:23:06 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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 ... 176 »
  Print  
Author Topic: ⚒ Syscoin -Blockchain Scalability, Trustless Interoperability for ERC20 projects  (Read 501982 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic. (14 posts by 1+ user deleted.)
Jcga
Legendary
*
Offline Offline

Activity: 2590
Merit: 1089



View Profile
June 04, 2016, 01:44:00 AM
 #141

Has anyone managed to get merge mining working with p2pool? My logs are jam packed with the same repeating error......

Sorry I don't have more info on p2pool, what is the error you're receiving?


---

We'll have another dev update this weekend, got some interesting info coming in that post related to the Syscoin 2.1 feature set / release date / roadmap addition, as well as some new information related to our partnership with Microsoft.

Another nice addition is this article from CoinTelegraph, thought they did a bang up job! Much better than those Coindesk OpenBazaar shills  Smiley

New Article:
“Syscoin is like eBay”: Interview with Developer of Decentralized Marketplace Cryptocurrency

Please help spread the word via Twitter if you're a tweeter: https://twitter.com/CoinTelegraph/status/738673270640283648



Done! Glad to read Smiley

All my best to Syscoin.

🚀IRRESISTIBLE "Crypto Collectibles" 👉 https://bitcointalk.org/index.php?board=217.0
IconFirm
Hero Member
*****
Offline Offline

Activity: 1438
Merit: 574


Always ask questions. #StandWithHongKong


View Profile WWW
June 04, 2016, 08:26:40 AM
 #142

Has anyone managed to get merge mining working with p2pool? My logs are jam packed with the same repeating error......

Sorry I don't have more info on p2pool, what is the error you're receiving?


Debug log is completely full of this:

2016-06-03 13:46:44 keypool return 2
2016-06-03 13:46:45 keypool reserve 2
2016-06-03 13:46:45 keypool return 2
2016-06-03 13:46:46 keypool reserve 2
2016-06-03 13:46:46 keypool return 2
2016-06-03 13:46:47 keypool reserve 2
2016-06-03 13:46:47 keypool return 2
2016-06-03 13:46:48 keypool reserve 2
2016-06-03 13:46:48 keypool return 2
2016-06-03 13:46:49 keypool reserve 2
2016-06-03 13:46:49 keypool return 2
2016-06-03 13:46:51 keypool reserve 2
2016-06-03 13:46:51 keypool return 2
2016-06-03 13:46:52 keypool reserve 2
2016-06-03 13:46:52 keypool return 2
2016-06-03 13:46:53 keypool reserve 2
2016-06-03 13:46:53 keypool return 2
2016-06-03 13:46:54 keypool reserve 2
2016-06-03 13:46:54 keypool return 2
2016-06-03 13:46:55 keypool reserve 2
2016-06-03 13:46:55 keypool return 2

conf file is right (I merge mine a couple of other coins) & it's the latest version built from git running on Ubuntu 64bit. I've also not seen a single payment since I started merge mining it, so something ain't right somewhere. I noticed an issue had been raised in github from someone with the same problem, it was only after seeing it that I realised I had the same issue.

Any ideas?
You're p2pool code is old I believe.. try to get latest and try again..

No - it's the latest p2pool version.

PIA went evil: https://bitcointalk.org/index.php?topic=5203968.msg53160131#msg53160131 Unofficial & Uncensored SYSCOIN thread: https://bitcointalk.org/index.php?topic=4748031.0    Do not trust Yobit/HitBTC/BiteBTC/coinsbit/p2pb2b/Mercatox/C-cex/Poloniex/WEX/KuCoin/LiveCoin/TheRockTrading/Bitfinex/ADAB/Okex/TradeSatoshi/Gate.io/Changelly/Freewallet.org/crex24 scam exchanges or ICO's by known scammers like HashCoins/Ambisafe/Bountyhive - they WILL scam you! Use diligence & research. Buy coins, sell coins - don't invest in stupid shit. If your questions aren't answered - don't touch it.
HasherMe
Newbie
*
Offline Offline

Activity: 58
Merit: 0


View Profile
June 04, 2016, 09:11:27 PM
 #143

Do you have build instructions for Ubuntu.  I tried to build Sycoin on Ubuntu 16 using this:

Code:
./autogen.sh && ./configure --with-gui=qt5 --with-incompatible-bdb && make

It builds but I get a Segfault when I run it.  There is not much in the debug.log but the problem seems to be with Berkeley db:

Code:
CDBEnv::Open: LogDir=/home/dev/.syscoin/database ErrorFile=/home/dev/.syscoin/db.log

I tried on an Ubuntu 14 machine, the VM I use to build Bitcoin with:
Code:
./autogen.sh && ./configure --with-gui=qt4 && make
but I get a compile error:
Code:
In file included from /usr/include/qt4/QtNetwork/QNetworkRequest:1:0,
                 from qt/acceptandpayofferlistpage.cpp:21:
/usr/include/qt4/QtNetwork/qnetworkrequest.h:56:7: error: forward declaration of ‘class QSslConfiguration’
 class QSslConfiguration;
       ^
qt/acceptandpayofferlistpage.cpp:385:27: error: ‘QSslSocket’ has not been declared
    conf.setPeerVerifyMode(QSslSocket::VerifyNone);
                           ^
qt/acceptandpayofferlistpage.cpp:386:21: error: ‘QSsl’ has not been declared
    conf.setProtocol(QSsl::TlsV1_0);
I am using the code from the master branch:  https://github.com/syscoin/syscoin2
I can wait for the PPA  to be complete and leave my coins on Bittrex but like to build my own binaries.  Thanks!
sidhujag
Legendary
*
Offline Offline

Activity: 2044
Merit: 1005


View Profile
June 04, 2016, 09:41:42 PM
 #144

Do you have build instructions for Ubuntu.  I tried to build Sycoin on Ubuntu 16 using this:

Code:
./autogen.sh && ./configure --with-gui=qt5 --with-incompatible-bdb && make

It builds but I get a Segfault when I run it.  There is not much in the debug.log but the problem seems to be with Berkeley db:

Code:
CDBEnv::Open: LogDir=/home/dev/.syscoin/database ErrorFile=/home/dev/.syscoin/db.log

I tried on an Ubuntu 14 machine, the VM I use to build Bitcoin with:
Code:
./autogen.sh && ./configure --with-gui=qt4 && make
but I get a compile error:
Code:
In file included from /usr/include/qt4/QtNetwork/QNetworkRequest:1:0,
                 from qt/acceptandpayofferlistpage.cpp:21:
/usr/include/qt4/QtNetwork/qnetworkrequest.h:56:7: error: forward declaration of ‘class QSslConfiguration’
 class QSslConfiguration;
       ^
qt/acceptandpayofferlistpage.cpp:385:27: error: ‘QSslSocket’ has not been declared
    conf.setPeerVerifyMode(QSslSocket::VerifyNone);
                           ^
qt/acceptandpayofferlistpage.cpp:386:21: error: ‘QSsl’ has not been declared
    conf.setProtocol(QSsl::TlsV1_0);
I am using the code from the master branch:  https://github.com/syscoin/syscoin2
I can wait for the PPA  to be complete and leave my coins on Bittrex but like to build my own binaries.  Thanks!
There seems to be issue with that version because bdb 5.1 is used but you need 4.8 unless you build with compatibility mode.. the Ubuntu build instructions on github talk about this I believe

https://github.com/syscoin/syscoin2/blob/master/doc/build-unix.md
sidhujag
Legendary
*
Offline Offline

Activity: 2044
Merit: 1005


View Profile
June 04, 2016, 10:01:17 PM
 #145

Has anyone managed to get merge mining working with p2pool? My logs are jam packed with the same repeating error......

Sorry I don't have more info on p2pool, what is the error you're receiving?


Debug log is completely full of this:

2016-06-03 13:46:44 keypool return 2
2016-06-03 13:46:45 keypool reserve 2
2016-06-03 13:46:45 keypool return 2
2016-06-03 13:46:46 keypool reserve 2
2016-06-03 13:46:46 keypool return 2
2016-06-03 13:46:47 keypool reserve 2
2016-06-03 13:46:47 keypool return 2
2016-06-03 13:46:48 keypool reserve 2
2016-06-03 13:46:48 keypool return 2
2016-06-03 13:46:49 keypool reserve 2
2016-06-03 13:46:49 keypool return 2
2016-06-03 13:46:51 keypool reserve 2
2016-06-03 13:46:51 keypool return 2
2016-06-03 13:46:52 keypool reserve 2
2016-06-03 13:46:52 keypool return 2
2016-06-03 13:46:53 keypool reserve 2
2016-06-03 13:46:53 keypool return 2
2016-06-03 13:46:54 keypool reserve 2
2016-06-03 13:46:54 keypool return 2
2016-06-03 13:46:55 keypool reserve 2
2016-06-03 13:46:55 keypool return 2

conf file is right (I merge mine a couple of other coins) & it's the latest version built from git running on Ubuntu 64bit. I've also not seen a single payment since I started merge mining it, so something ain't right somewhere. I noticed an issue had been raised in github from someone with the same problem, it was only after seeing it that I realised I had the same issue.

Any ideas?
You're p2pool code is old I believe.. try to get latest and try again..

No - it's the latest p2pool version.

Ok so the NOMP based pools used "target" instead of "_target" and sigwo convinced me to change it.. however p2pool still uses "_target" it looks like maybe it should remain "_target" and the NOMP pools should change their code to work properly.

https://github.com/syscoin/syscoin2/blob/master/src/rpcmining.cpp#L923

update that line to "_target" and compile syscoin2 and try again. I've updated the issue https://github.com/syscoin/syscoin2/issues/81

I will update this line back to _target in syscoin 2.1 so 2.1 should work OOTB.
steve321
Hero Member
*****
Offline Offline

Activity: 627
Merit: 500


View Profile
June 07, 2016, 01:52:52 AM
 #146

Had this wallet synced when it was released, then got "Couldn't connect to best block."  Now having trouble getting it synced, gets stuck.  Anyone have a recent blockchain snapshot, or a bootstrap for SYS?  Thanks,
sidhujag
Legendary
*
Offline Offline

Activity: 2044
Merit: 1005


View Profile
June 07, 2016, 06:17:42 AM
 #147

Had this wallet synced when it was released, then got "Couldn't connect to best block."  Now having trouble getting it synced, gets stuck.  Anyone have a recent blockchain snapshot, or a bootstrap for SYS?  Thanks,
did you use the syscoin.conf file with nodes provided? You using the latest wallet from May 8? It shouldn't give you the best block error unless your using the one from May 1.
*Sakura*
Legendary
*
Offline Offline

Activity: 1624
Merit: 1005

I wish you all love and profitable investments!!!


View Profile
June 07, 2016, 07:25:22 AM
 #148

Had this wallet synced when it was released, then got "Couldn't connect to best block."  Now having trouble getting it synced, gets stuck.  Anyone have a recent blockchain snapshot, or a bootstrap for SYS?  Thanks,
did you use the syscoin.conf file with nodes provided? You using the latest wallet from May 8? It shouldn't give you the best block error unless your using the one from May 1.


Same was on my side. Please use the wallet from May 8.
Papcio77
Sr. Member
****
Offline Offline

Activity: 841
Merit: 251



View Profile
June 07, 2016, 01:06:03 PM
 #149

Had this wallet synced when it was released, then got "Couldn't connect to best block."  Now having trouble getting it synced, gets stuck.  Anyone have a recent blockchain snapshot, or a bootstrap for SYS?  Thanks,
did you use the syscoin.conf file with nodes provided? You using the latest wallet from May 8? It shouldn't give you the best block error unless your using the one from May 1.


Same was on my side. Please use the wallet from May 8.

Please link to the wallet on 8 May. Because at the github I can only see the version of 1 May.


This is the version of May 8? Because at the github it is written on May 1. : https://github.com/syscoin/syscoin2/releases/tag/2.0
AngryDwarf
Sr. Member
****
Offline Offline

Activity: 476
Merit: 501


View Profile
June 07, 2016, 03:49:38 PM
 #150

Anyone know why this transaction is not confirming?

280961735df81c7f95bbed31e862c914e62825ab419ee6a94c316de85ff48457

Lots of empty blocks being mined.

Scaling and transaction rate: https://bitcointalk.org/index.php?topic=532.msg6306#msg6306
Do not allow demand to exceed capacity. Do not allow mempools to forget transactions. Relay all transactions. Eventually confirm all transactions.
steve321
Hero Member
*****
Offline Offline

Activity: 627
Merit: 500


View Profile
June 07, 2016, 05:03:46 PM
 #151

Had this wallet synced when it was released, then got "Couldn't connect to best block."  Now having trouble getting it synced, gets stuck.  Anyone have a recent blockchain snapshot, or a bootstrap for SYS?  Thanks,
did you use the syscoin.conf file with nodes provided? You using the latest wallet from May 8? It shouldn't give you the best block error unless your using the one from May 1.


Same was on my side. Please use the wallet from May 8.

If I try to sync from scratch, using the May 8 wallet, and the .conf, it get to block 1696 and stops.  If I close & relaunch, I get the best block error...
toughlife
Newbie
*
Offline Offline

Activity: 17
Merit: 0


View Profile
June 07, 2016, 05:15:19 PM
 #152

Syscoin price is rising on poloniex  Grin
AngryDwarf
Sr. Member
****
Offline Offline

Activity: 476
Merit: 501


View Profile
June 07, 2016, 11:49:55 PM
 #153

Anyone know why this transaction is not confirming?

280961735df81c7f95bbed31e862c914e62825ab419ee6a94c316de85ff48457

Lots of empty blocks being mined.

So what is going on? Tried zapwallettxes and send with a fee. Booted into windows, updated to latest wallet from syscoin.org, restored pre conversion wallet.dat and send again. No confirmation. Yet I have seen massive fee free transactions go through quickly.

Latest txId:

d742569bf44bd0138f41994b52cd7f8dd65c46e01a416cbdb71286e6b42ea5f1

Note: originally tried sending on linux built from latest release tag source.

Scaling and transaction rate: https://bitcointalk.org/index.php?topic=532.msg6306#msg6306
Do not allow demand to exceed capacity. Do not allow mempools to forget transactions. Relay all transactions. Eventually confirm all transactions.
sidhujag
Legendary
*
Offline Offline

Activity: 2044
Merit: 1005


View Profile
June 08, 2016, 12:31:05 AM
 #154

Had this wallet synced when it was released, then got "Couldn't connect to best block."  Now having trouble getting it synced, gets stuck.  Anyone have a recent blockchain snapshot, or a bootstrap for SYS?  Thanks,
did you use the syscoin.conf file with nodes provided? You using the latest wallet from May 8? It shouldn't give you the best block error unless your using the one from May 1.


Same was on my side. Please use the wallet from May 8.

If I try to sync from scratch, using the May 8 wallet, and the .conf, it get to block 1696 and stops.  If I close & relaunch, I get the best block error...
Delete your data dir except wallet.. resync from scratch
sidhujag
Legendary
*
Offline Offline

Activity: 2044
Merit: 1005


View Profile
June 08, 2016, 12:37:50 AM
 #155

Anyone know why this transaction is not confirming?

280961735df81c7f95bbed31e862c914e62825ab419ee6a94c316de85ff48457

Lots of empty blocks being mined.

So what is going on? Tried zapwallettxes and send with a fee. Booted into windows, updated to latest wallet from syscoin.org, restored pre conversion wallet.dat and send again. No confirmation. Yet I have seen massive fee free transactions go through quickly.

Latest txId:

d742569bf44bd0138f41994b52cd7f8dd65c46e01a416cbdb71286e6b42ea5f1

Note: originally tried sending on linux built from latest release tag source.
Do you have offers? Doesn't sound normal.. maybe your wallet is messed up..I wonder if it's relaying your tx.. make sure you have the node list in your conf file that you get from github
AngryDwarf
Sr. Member
****
Offline Offline

Activity: 476
Merit: 501


View Profile
June 08, 2016, 06:57:14 AM
 #156

Anyone know why this transaction is not confirming?

280961735df81c7f95bbed31e862c914e62825ab419ee6a94c316de85ff48457

Lots of empty blocks being mined.

So what is going on? Tried zapwallettxes and send with a fee. Booted into windows, updated to latest wallet from syscoin.org, restored pre conversion wallet.dat and send again. No confirmation. Yet I have seen massive fee free transactions go through quickly.

Latest txId:

d742569bf44bd0138f41994b52cd7f8dd65c46e01a416cbdb71286e6b42ea5f1

Note: originally tried sending on linux built from latest release tag source.
Do you have offers? Doesn't sound normal.. maybe your wallet is messed up..I wonder if it's relaying your tx.. make sure you have the node list in your conf file that you get from github

I've update the conf file with a few extra nodes from github. Yes, the transactions where broadcast through the best part of 8 nodes, but the transaction didn't show up again after zapwallettxes (I would have thought another node would have re-broadcast it)

Scaling and transaction rate: https://bitcointalk.org/index.php?topic=532.msg6306#msg6306
Do not allow demand to exceed capacity. Do not allow mempools to forget transactions. Relay all transactions. Eventually confirm all transactions.
AngryDwarf
Sr. Member
****
Offline Offline

Activity: 476
Merit: 501


View Profile
June 08, 2016, 08:02:14 AM
 #157

Restored wallet.dat, updated conf with extra nodes from github. Removed peers.dat. Not allowing incoming connections.
Will the new wallet reject SYS1 connections? I wonder if there was some interference from that. Otherwise it is beginning to look like I can't send coins from the conversion. I'll leave the coins sat there for a while. Would be useful if someone could confirm an empty mempool.
BTW, my transaction appeared to show up in debug window as 1.5kB. 3 inputs, one output.

Scaling and transaction rate: https://bitcointalk.org/index.php?topic=532.msg6306#msg6306
Do not allow demand to exceed capacity. Do not allow mempools to forget transactions. Relay all transactions. Eventually confirm all transactions.
mellon
Legendary
*
Offline Offline

Activity: 1014
Merit: 1002


Quel marth Melloneamin


View Profile
June 08, 2016, 11:22:49 AM
 #158

Hi all. Guys i have a problem with one transaction on Yobit exchange. Its not confirmed around one month now. My tickets to their support not have any sense. May be you can help me here? Anyway ty.

    [    ] 
  POW/POS
  ANONIMITY
TRANSACTIONS
  SECURITY
 
   
STEEP
& CHEAP
.steepcoinproject@gmail.com.
revelacaogr
Legendary
*
Offline Offline

Activity: 1316
Merit: 1021

2009 Alea iacta est


View Profile
June 08, 2016, 12:07:50 PM
 #159

decred and waves had also problems with yobit....
AngryDwarf
Sr. Member
****
Offline Offline

Activity: 476
Merit: 501


View Profile
June 08, 2016, 12:09:57 PM
 #160

Can see 6 transactions at 6.78 kB in the memory pool that haven't moved now for several blocks, which are being mined empty. Perhaps the majority mining pools have some rather greedy settings? If so, this is not good for the average user which has no clue what 'fee' needs to be put on it, as the core wallet allows either fee free transactions or transactions with a small fee automatically calculated.

Scaling and transaction rate: https://bitcointalk.org/index.php?topic=532.msg6306#msg6306
Do not allow demand to exceed capacity. Do not allow mempools to forget transactions. Relay all transactions. Eventually confirm all transactions.
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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 ... 176 »
  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!