Bitcoin Forum
May 03, 2024, 09:52:55 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: To Be or Not to Be
To Be - 41 (70.7%)
Not to Be - 17 (29.3%)
Total Voters: 58

Pages: « 1 ... 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 [121] 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 ... 210 »
  Print  
Author Topic: [ANN][SILKCOIN][DARKSILK PREANN][TESTING STORMNODES/DarkSIlk MARKET/I2P]  (Read 289446 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.
mbishop75
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
August 08, 2015, 08:45:15 PM
 #2401

Since this is not live (i.e. no hashGenesisBlock defined), the wallet crashes on assert(hashGenesisBlock == uint256("")); when trying to launch.  Do you have a block chain that you're using for dev purposes?  I'd like to connect to the same BC that you're using so we can see the same transactions et al.
The trust scores you see are subjective; they will change depending on who you have in your trust list.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714773175
Hero Member
*
Offline Offline

Posts: 1714773175

View Profile Personal Message (Offline)

Ignore
1714773175
Reply with quote  #2

1714773175
Report to moderator
1714773175
Hero Member
*
Offline Offline

Posts: 1714773175

View Profile Personal Message (Offline)

Ignore
1714773175
Reply with quote  #2

1714773175
Report to moderator
SCDeveloper
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 08, 2015, 08:52:35 PM
 #2402

Since this is not live (i.e. no hashGenesisBlock defined), the wallet crashes on assert(hashGenesisBlock == uint256("")); when trying to launch.  Do you have a block chain that you're using for dev purposes?  I'd like to connect to the same BC that you're using so we can see the same transactions et al.

It shouldn't crash on assert(hashGenesisBlock ==uint256("")); as it is present:

https://github.com/SCDeveloper/DarkSilk/blob/master/src/chainparams.cpp#L95

I have just cloned and built from the same repo.

https://github.com/SCDeveloper/DarkSilk

SCDeveloper
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 08, 2015, 09:26:18 PM
 #2403

Since this is not live (i.e. no hashGenesisBlock defined), the wallet crashes on assert(hashGenesisBlock == uint256("")); when trying to launch.  Do you have a block chain that you're using for dev purposes?  I'd like to connect to the same BC that you're using so we can see the same transactions et al.

It shouldn't crash on assert(hashGenesisBlock ==uint256("")); as it is present:

https://github.com/SCDeveloper/DarkSilk/blob/master/src/chainparams.cpp#L95

I have just cloned and built from the same repo.

https://github.com/SCDeveloper/DarkSilk



If you find the issue could you pull request and I will merge. Believe there is a 5/6 hour difference between us and it's getting late here now.
mbishop75
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
August 08, 2015, 09:33:19 PM
 #2404

Did you build from a fresh clone?  I had to add "qrencode.h" to ./src/qt/ to build successfully. 
Maybe you have a local reference that the repo is missing. 

If I find the issue, I'll fork your repo and do a pull request.
mbishop75
Newbie
*
Offline Offline

Activity: 25
Merit: 0


View Profile
August 08, 2015, 09:38:57 PM
 #2405

Oh yea...without commenting out the debug assertions for the hashGenesisBlock, the wallet does not launch on my fresh build.

DarkSilk: ../DarkSilk/src/chainparams.cpp:86: CMainParams::CMainParams(): Assertion `hashGenesisBlock == uint256("")' failed.
Aborted

I'm running 3.13.0-24-generic #47-Ubuntu (Linux Mint 17) and building with Qt 5.3.1 (GCC 4.6.1, 64 bit).
I'll check for updates and re-build to see if that makes a difference.  It's not a show stopper by any means. 
SCDeveloper
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 08, 2015, 10:24:40 PM
Last edit: August 08, 2015, 10:36:46 PM by SCDeveloper
 #2406

Oh yea...without commenting out the debug assertions for the hashGenesisBlock, the wallet does not launch on my fresh build.

DarkSilk: ../DarkSilk/src/chainparams.cpp:86: CMainParams::CMainParams(): Assertion `hashGenesisBlock == uint256("")' failed.
Aborted

I'm running 3.13.0-24-generic #47-Ubuntu (Linux Mint 17) and building with Qt 5.3.1 (GCC 4.6.1, 64 bit).
I'll check for updates and re-build to see if that makes a difference.  It's not a show stopper by any means.  

That is strange.

I created a clean Ubuntu (15.04) VM and cloned the repo. Followed my ReadMe to the letter (to make sure I hadn't missed anything) and it built and ran perfectly first time. Both daemon and Qt.

Check you have these deps: libpng-dev qrencode libqrencode-dev

You should not have to add qrencode.h to the source.
OrsonJ
Sr. Member
****
Offline Offline

Activity: 597
Merit: 253


... and the swarm is headed towards us


View Profile WWW
August 08, 2015, 10:40:35 PM
 #2407

Oh yea...without commenting out the debug assertions for the hashGenesisBlock, the wallet does not launch on my fresh build.

DarkSilk: ../DarkSilk/src/chainparams.cpp:86: CMainParams::CMainParams(): Assertion `hashGenesisBlock == uint256("")' failed.
Aborted

I'm running 3.13.0-24-generic #47-Ubuntu (Linux Mint 17) and building with Qt 5.3.1 (GCC 4.6.1, 64 bit).
I'll check for updates and re-build to see if that makes a difference.  It's not a show stopper by any means.  

That is strange.

I created a clean Ubuntu (15.04) VM and cloned the repo. Followed my ReadMe to the letter (to make sure I hadn't missed anything) and it built and ran perfectly first time. Both daemon and Qt.

Check you have these deps: libpng-dev qrencode libqrencode-dev

You should not have to add qrencode.h to the source.

I have it built and running on 14.04. Slow syncing, seems to be stuck on 3 blocks but I'll leave it a bit. Digging those keyboard shortcuts!   Cool

Zano alias: @orsonj  |  Twitter: @Cryptoschild
SCDeveloper
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 08, 2015, 10:41:15 PM
 #2408

Oh yea...without commenting out the debug assertions for the hashGenesisBlock, the wallet does not launch on my fresh build.

DarkSilk: ../DarkSilk/src/chainparams.cpp:86: CMainParams::CMainParams(): Assertion `hashGenesisBlock == uint256("")' failed.
Aborted

I'm running 3.13.0-24-generic #47-Ubuntu (Linux Mint 17) and building with Qt 5.3.1 (GCC 4.6.1, 64 bit).
I'll check for updates and re-build to see if that makes a difference.  It's not a show stopper by any means.  

That is strange.

I created a clean Ubuntu (15.04) VM and cloned the repo. Followed my ReadMe to the letter (to make sure I hadn't missed anything) and it built and ran perfectly first time. Both daemon and Qt.

Check you have these deps: libpng-dev qrencode libqrencode-dev

You should not have to add qrencode.h to the source.

I have it built and running on 14.04. Slow syncing, seems to be stuck on 3 blocks but I'll leave it a bit. Digging those keyboard shortcuts!   Cool

Not stuck. That's how many blocks the chain consists of Wink
OrsonJ
Sr. Member
****
Offline Offline

Activity: 597
Merit: 253


... and the swarm is headed towards us


View Profile WWW
August 08, 2015, 10:46:14 PM
 #2409

Oh yea...without commenting out the debug assertions for the hashGenesisBlock, the wallet does not launch on my fresh build.

DarkSilk: ../DarkSilk/src/chainparams.cpp:86: CMainParams::CMainParams(): Assertion `hashGenesisBlock == uint256("")' failed.
Aborted

I'm running 3.13.0-24-generic #47-Ubuntu (Linux Mint 17) and building with Qt 5.3.1 (GCC 4.6.1, 64 bit).
I'll check for updates and re-build to see if that makes a difference.  It's not a show stopper by any means.  

That is strange.

I created a clean Ubuntu (15.04) VM and cloned the repo. Followed my ReadMe to the letter (to make sure I hadn't missed anything) and it built and ran perfectly first time. Both daemon and Qt.

Check you have these deps: libpng-dev qrencode libqrencode-dev

You should not have to add qrencode.h to the source.

I have it built and running on 14.04. Slow syncing, seems to be stuck on 3 blocks but I'll leave it a bit. Digging those keyboard shortcuts!   Cool

Not stuck. That's how many blocks the chain consists of Wink

My mistake, it's saying 'Out of Sync' but presumably because it's been a few hours since that last block was mined. One thing I noticed - if I try to create a Stormnode address the wallet closes abruptly after entering it. Don't know if that's the standard behaviour with Crave or if it's crashing. The address is listed when restarting the wallet. Let me know if there's anything I can do to help with testing.

Zano alias: @orsonj  |  Twitter: @Cryptoschild
SCDeveloper
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 08, 2015, 10:52:49 PM
 #2410

Oh yea...without commenting out the debug assertions for the hashGenesisBlock, the wallet does not launch on my fresh build.

DarkSilk: ../DarkSilk/src/chainparams.cpp:86: CMainParams::CMainParams(): Assertion `hashGenesisBlock == uint256("")' failed.
Aborted

I'm running 3.13.0-24-generic #47-Ubuntu (Linux Mint 17) and building with Qt 5.3.1 (GCC 4.6.1, 64 bit).
I'll check for updates and re-build to see if that makes a difference.  It's not a show stopper by any means.  

That is strange.

I created a clean Ubuntu (15.04) VM and cloned the repo. Followed my ReadMe to the letter (to make sure I hadn't missed anything) and it built and ran perfectly first time. Both daemon and Qt.

Check you have these deps: libpng-dev qrencode libqrencode-dev

You should not have to add qrencode.h to the source.

I have it built and running on 14.04. Slow syncing, seems to be stuck on 3 blocks but I'll leave it a bit. Digging those keyboard shortcuts!   Cool

Not stuck. That's how many blocks the chain consists of Wink

My mistake, it's saying 'Out of Sync' but presumably because it's been a few hours since that last block was mined. One thing I noticed - if I try to create a Stormnode address the wallet closes abruptly after entering it. Don't know if that's the standard behaviour with Crave or if it's crashing. The address is listed when restarting the wallet. Let me know if there's anything I can do to help with testing.

The wallet doesn't crash however when you run it using:

$ valgrind --tool=memcheck --leak-check=full ./DarkSilk

which was what I was doing to see if I could find the root of the invalid pointer issue.

You will have to sudo apt-get install valgrind so that you can see this.

Also if your mining to the wallet, even if you close the wallet, it will stay running in the background until you quit the miner.

Also I haven't experienced the crash from creating a Stormnode.
SCDeveloper
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 09, 2015, 01:20:47 AM
Last edit: August 09, 2015, 07:24:18 AM by SCDeveloper
 #2411

OK I believe I have fixed it (no more errors).

The wallet no longer crashes on mining.

Can everyone clone and rebuild please Cheesy

Also clear out all files except your darksilk.conf within your hidden .darksilk folder in ~

https://github.com/SCDeveloper/DarkSilk/commit/98f02e43cdd9d3738a3634088aa025dd2ddf6e7a

EDIT: Now 7.10am and been up fixing the error and sorting the mining out. Cleaned out unused code and also implemeneted two bitcoin commits.

https://i.imgur.com/GdGEVZB.png


Was also thinking......how about 4.2% PoS Interest?
OrsonJ
Sr. Member
****
Offline Offline

Activity: 597
Merit: 253


... and the swarm is headed towards us


View Profile WWW
August 09, 2015, 07:37:04 AM
 #2412

OK I believe I have fixed it (no more errors).

The wallet no longer crashes on mining.

Can everyone clone and rebuild please Cheesy

Also clear out all files except your darksilk.conf within your hidden .darksilk folder in ~

https://github.com/SCDeveloper/DarkSilk/commit/98f02e43cdd9d3738a3634088aa025dd2ddf6e7a

EDIT: Now 7.10am and been up fixing the error and sorting the mining out. Cleaned out unused code and also implemeneted two bitcoin commits.




Was also thinking......how about 4.2% PoS Interest?

Lol and rpcport 4242?  Grin

Zano alias: @orsonj  |  Twitter: @Cryptoschild
SCDeveloper
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 09, 2015, 07:41:09 AM
 #2413

OK I believe I have fixed it (no more errors).

The wallet no longer crashes on mining.

Can everyone clone and rebuild please Cheesy

Also clear out all files except your darksilk.conf within your hidden .darksilk folder in ~

https://github.com/SCDeveloper/DarkSilk/commit/98f02e43cdd9d3738a3634088aa025dd2ddf6e7a

EDIT: Now 7.10am and been up fixing the error and sorting the mining out. Cleaned out unused code and also implemeneted two bitcoin commits.

https://i.imgur.com/GdGEVZB.png


Was also thinking......how about 4.2% PoS Interest?

Lol and rpcport 4242?  Grin

We will see lol
HORT
Hero Member
*****
Offline Offline

Activity: 508
Merit: 501



View Profile
August 09, 2015, 12:17:56 PM
 #2414

I do hope the new wallet is not as big of memory hog as the last wallet. The current wallet (1.1.1.1) uses a minimum 15% CPU and spikes to 30%. Is this addressable? Thanks!!
SCDeveloper
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 09, 2015, 02:54:52 PM
 #2415

I do hope the new wallet is not as big of memory hog as the last wallet. The current wallet (1.1.1.1) uses a minimum 15% CPU and spikes to 30%. Is this addressable? Thanks!!

Well the original Silkcoin wallet does have a lot of features within it, hence the CPU and RAM usage.
SCDeveloper
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 09, 2015, 03:31:48 PM
Last edit: August 09, 2015, 04:10:05 PM by SCDeveloper
 #2416

Connect to the #DarkSilkTestNet channel on the Freenode IRC network to communicate together.

We may need to clear out the chain at points and obviously we cannot always get messages across to people quickly enough via here.

If anyone has downloaded the source from GitHub then please download again as changes have been made.

Ensure you clear out all your data apart from darksilk.conf from the .darksilk (hidden) directory.

(There is a darksilk.conf included in the DarkSilk/src directory)
SCDeveloper
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 09, 2015, 04:27:10 PM
Last edit: August 09, 2015, 04:38:26 PM by SCDeveloper
 #2417

How many people can provide seeds upon launch?

Clearnet (IPv4 and IPv6), Tor and I2P.

This way I can add the addresses to the darksilk.conf provided and also into the source:

https://github.com/SCDeveloper/DarkSilk/tree/master/share/seeds
HORT
Hero Member
*****
Offline Offline

Activity: 508
Merit: 501



View Profile
August 09, 2015, 05:14:53 PM
 #2418

OK all, we need to start on a logo design for DarkSilk. Let the submissions begin!!
SCDeveloper
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
August 09, 2015, 06:13:17 PM
Last edit: August 09, 2015, 06:31:39 PM by SCDeveloper
 #2419

https://i.imgur.com/pY3IiJ5.png

Another variation on the same design.

(I am no pro graphic designer by a long shot lol)
Delita Heiral
Sr. Member
****
Offline Offline

Activity: 263
Merit: 250


View Profile
August 09, 2015, 07:21:31 PM
 #2420

nintendo darksilk
Pages: « 1 ... 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 [121] 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 ... 210 »
  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!