Author

Topic: BTCD is no more - page 461. (Read 1328490 times)

hero member
Activity: 820
Merit: 1000
July 22, 2014, 01:43:28 AM
Hi James,

I have an error linking pNXT.  If you're happy to discuss the issues here than ok, but I'll use pastebin for the errors otherwise it's going to get bloated here really fast Smiley

http://pastebin.com/n2XTYd81


make sure you have clang installed
from the pNXT/src directory do a:
./m_unix

that should make pNXTd in the pNXT/src/src directory

Kind of a mess, but I just used the existing make structure

James


Still no joy... http://pastebin.com/ckV8FewS

you have to install curl and it seems there is a boost issue...
I hate boost, so hard to install
maybe revert to 1.53? Just need to get the ubuntu to recognize the boost and I think it will work

James

P.S. You did do a "cmake .." from the pNXT/src directory?
Still no joy :/
It's basically complaining about not being able to find the static boost libraries.  I don't think I can downgrade to an earlier version either as they dont seem to be available for Ubuntu 14.  How annoying!
1.55?

You might try to install a vanilla BBR first. That would get all the compiler dependencies out of the way, then pNXTd will build

Quick glance, try to install the -dev package for static libs... you might only have the .so's and not the .libs

better to ensure you arent compiling a static target... its not a good idea. Better to build dynamically, remove -static from the makefile if its there.

Also you are missing lib curl package aswell.
I have curl installed (that's an old error post), I have libboost-all-dev installed, I see nothing in CMakeLists.txt about using static libs.  Sorry don't think i can burn any more time on this now.  I guess I'll just wait until other people figure it out.
legendary
Activity: 1176
Merit: 1134
July 22, 2014, 01:37:33 AM
how can these people just keep dumping......
Its ok, like waves. goes up, goes down.
They key is if the tide is rising or not.
Need to average the waves to check this
legendary
Activity: 882
Merit: 1000
July 22, 2014, 01:31:06 AM
how can these people just keep dumping......
legendary
Activity: 1176
Merit: 1134
July 22, 2014, 01:20:00 AM
How will CryptoNote technologies be incorporated into this coin?
I am exploring various approaches, but have not decided on the final form yet

I am starting with the assumption that the user will simply want to go "privateSend" and then all the algos crunch away and after some time passes, the funds are available to the receiver.

If you look at my discussion thread with AnonyMint, the ring signature idea is actually very similar to the plan I initially had. At the time I wasnt aware of the ring signatures. Now that I am and also have already made a cryptonote fork, I am getting closer to being able to make the right choice. I do have one approach where I extracted the core ring signature algo in isolation and if I can surgically insert that into BTCD core, then it would be the cleanest approach, but would definitely take longer.

So, the question is do we want something that is available sooner, but does a two step process with a pNXT conduit, or takes longer and will need a LOT of testing with a pure merging of ring signatures into BTCD.

For now I am keeping my options open and implementing the things that either approach requires. It also fills out more of the "jigsaw puzzle" and the more of the puzzle pieces have their place known, the less unknown and the easier for someone like me to pop in the next piece. So as long as I can keep making incremental progress, then eventually at some point I am done

Pretty scientific isnt it Smiley
The basic theory is that if you have a problem P and can reduce its complexity to P-- and you can keep doing this, eventually it becomes "p" and I finish it in a day

James

Interesting, so you're attempting to merge CryptoNote and conventional bitcoin technologies?
Long term that could be the preferred solution to simplify the architecture, but I want to get something out sooner rather than later so I plan on doing a "soft merge", so they both coexist. Then again I might just get a flash of insight on how to do something totally original and solve the fundamental problem of privacy. That's really what this is about. If I can create a privacy solution that passes peer review, then the exact algo is not so relevant.

BitcoinDark is committed to continue to advance privacy tech while at the same time providing other valuable services all in a user friendly environment. So, currently ring signatures look very good, but zerocoin threatens to come out with zerocash and if they actually do and their zeroknowledge stuff is really as good as they say, it would make sense to integrate that into BitcoinDark. I like to have different privacy levels, so maybe basic level uses mixing, corporate level uses ring signatures, advanced uses zerocash and total-invisibility level combines all of them.

I want people to be able to choose BitcoinDark and then not have to worry about whether it was the right tech choice. BTCD will be like the Borg, we will assimilate all useful tech. If I made a mistake (I do this on occasion) and made the wrong selection, then I will simply correct it and pop in the better algo.

So things are evolving and will continue to evolve. Privacy tech is like antivirus tech. As soon as you reach a certain level of privacy, attackers start attacking and it is prudent to improve the algorithms.

James
legendary
Activity: 2044
Merit: 1005
July 22, 2014, 01:17:20 AM
Hi James,

I have an error linking pNXT.  If you're happy to discuss the issues here than ok, but I'll use pastebin for the errors otherwise it's going to get bloated here really fast Smiley

http://pastebin.com/n2XTYd81


make sure you have clang installed
from the pNXT/src directory do a:
./m_unix

that should make pNXTd in the pNXT/src/src directory

Kind of a mess, but I just used the existing make structure

James


Still no joy... http://pastebin.com/ckV8FewS

you have to install curl and it seems there is a boost issue...
I hate boost, so hard to install
maybe revert to 1.53? Just need to get the ubuntu to recognize the boost and I think it will work

James

P.S. You did do a "cmake .." from the pNXT/src directory?
Still no joy :/
It's basically complaining about not being able to find the static boost libraries.  I don't think I can downgrade to an earlier version either as they dont seem to be available for Ubuntu 14.  How annoying!
1.55?

You might try to install a vanilla BBR first. That would get all the compiler dependencies out of the way, then pNXTd will build

Quick glance, try to install the -dev package for static libs... you might only have the .so's and not the .libs

better to ensure you arent compiling a static target... its not a good idea. Better to build dynamically, remove -static from the makefile if its there.

Also you are missing lib curl package aswell.
legendary
Activity: 1176
Merit: 1134
July 22, 2014, 01:08:52 AM
Hi James,

I have an error linking pNXT.  If you're happy to discuss the issues here than ok, but I'll use pastebin for the errors otherwise it's going to get bloated here really fast Smiley

http://pastebin.com/n2XTYd81


make sure you have clang installed
from the pNXT/src directory do a:
./m_unix

that should make pNXTd in the pNXT/src/src directory

Kind of a mess, but I just used the existing make structure

James


Still no joy... http://pastebin.com/ckV8FewS

you have to install curl and it seems there is a boost issue...
I hate boost, so hard to install
maybe revert to 1.53? Just need to get the ubuntu to recognize the boost and I think it will work

James

P.S. You did do a "cmake .." from the pNXT/src directory?
Still no joy :/
It's basically complaining about not being able to find the static boost libraries.  I don't think I can downgrade to an earlier version either as they dont seem to be available for Ubuntu 14.  How annoying!
1.55?

You might try to install a vanilla BBR first. That would get all the compiler dependencies out of the way, then pNXTd will build
legendary
Activity: 1176
Merit: 1015
July 22, 2014, 12:53:11 AM
How will CryptoNote technologies be incorporated into this coin?
I am exploring various approaches, but have not decided on the final form yet

I am starting with the assumption that the user will simply want to go "privateSend" and then all the algos crunch away and after some time passes, the funds are available to the receiver.

If you look at my discussion thread with AnonyMint, the ring signature idea is actually very similar to the plan I initially had. At the time I wasnt aware of the ring signatures. Now that I am and also have already made a cryptonote fork, I am getting closer to being able to make the right choice. I do have one approach where I extracted the core ring signature algo in isolation and if I can surgically insert that into BTCD core, then it would be the cleanest approach, but would definitely take longer.

So, the question is do we want something that is available sooner, but does a two step process with a pNXT conduit, or takes longer and will need a LOT of testing with a pure merging of ring signatures into BTCD.

For now I am keeping my options open and implementing the things that either approach requires. It also fills out more of the "jigsaw puzzle" and the more of the puzzle pieces have their place known, the less unknown and the easier for someone like me to pop in the next piece. So as long as I can keep making incremental progress, then eventually at some point I am done

Pretty scientific isnt it Smiley
The basic theory is that if you have a problem P and can reduce its complexity to P-- and you can keep doing this, eventually it becomes "p" and I finish it in a day

James

Interesting, so you're attempting to merge CryptoNote and conventional bitcoin technologies?
hero member
Activity: 820
Merit: 1000
July 22, 2014, 12:47:24 AM
Hi James,

I have an error linking pNXT.  If you're happy to discuss the issues here than ok, but I'll use pastebin for the errors otherwise it's going to get bloated here really fast Smiley

http://pastebin.com/n2XTYd81


make sure you have clang installed
from the pNXT/src directory do a:
./m_unix

that should make pNXTd in the pNXT/src/src directory

Kind of a mess, but I just used the existing make structure

James


Still no joy... http://pastebin.com/ckV8FewS

you have to install curl and it seems there is a boost issue...
I hate boost, so hard to install
maybe revert to 1.53? Just need to get the ubuntu to recognize the boost and I think it will work

James

P.S. You did do a "cmake .." from the pNXT/src directory?
Still no joy :/
It's basically complaining about not being able to find the static boost libraries.  I don't think I can downgrade to an earlier version either as they dont seem to be available for Ubuntu 14.  How annoying!
legendary
Activity: 1176
Merit: 1134
July 22, 2014, 12:44:09 AM
How will CryptoNote technologies be incorporated into this coin?
I am exploring various approaches, but have not decided on the final form yet

I am starting with the assumption that the user will simply want to go "privateSend" and then all the algos crunch away and after some time passes, the funds are available to the receiver.

If you look at my discussion thread with AnonyMint, the ring signature idea is actually very similar to the plan I initially had. At the time I wasnt aware of the ring signatures. Now that I am and also have already made a cryptonote fork, I am getting closer to being able to make the right choice. I do have one approach where I extracted the core ring signature algo in isolation and if I can surgically insert that into BTCD core, then it would be the cleanest approach, but would definitely take longer.

So, the question is do we want something that is available sooner, but does a two step process with a pNXT conduit, or takes longer and will need a LOT of testing with a pure merging of ring signatures into BTCD.

For now I am keeping my options open and implementing the things that either approach requires. It also fills out more of the "jigsaw puzzle" and the more of the puzzle pieces have their place known, the less unknown and the easier for someone like me to pop in the next piece. So as long as I can keep making incremental progress, then eventually at some point I am done

Pretty scientific isnt it Smiley
The basic theory is that if you have a problem P and can reduce its complexity to P-- and you can keep doing this, eventually it becomes "p" and I finish it in a day

James
legendary
Activity: 1176
Merit: 1015
July 22, 2014, 12:30:11 AM
How will CryptoNote technologies be incorporated into this coin?
hero member
Activity: 630
Merit: 500
July 22, 2014, 12:07:58 AM
Hey everyone, this is kind of a re-post from last night.  

I love price watching too, but I'd like to keep us focused on development as well.




Call to action!

Alright everybody, James is making real progress and will continue to do so on the technical advancement of BTCD.

I would like to ask the communities support in ramping up marketing activities.  

We need people to help spread the word.  Get on social media, re-tweet our messages.  Let crypto oriented news outlets know about our progress.

Some basic things that we should be doing:

-contact more media outlets (If you have any special connections to any media outlets, please put in a word)

-create a more professional looking website (IceColdTommy has said he will develop the website)

-find someone that can do HTML5 and is willing to start building an html wallet

-come up with a unique name for our "wallet", which will be able to do trades, bets, privatesends, asset exchanges

-improve the logo


Whatever else you guys can think of!

The Dark Zone

Or

The Dark Side

or

The Dark Portal

RJzoBDRUQXm38A82C3LTLJjDMWMTqtbDRd
legendary
Activity: 1176
Merit: 1134
July 21, 2014, 11:53:33 PM
Hi James,

I have an error linking pNXT.  If you're happy to discuss the issues here than ok, but I'll use pastebin for the errors otherwise it's going to get bloated here really fast Smiley

http://pastebin.com/n2XTYd81


make sure you have clang installed
from the pNXT/src directory do a:
./m_unix

that should make pNXTd in the pNXT/src/src directory

Kind of a mess, but I just used the existing make structure

James

Still no joy... http://pastebin.com/ckV8FewS

you have to install curl and it seems there is a boost issue...
I hate boost, so hard to install
maybe revert to 1.53? Just need to get the ubuntu to recognize the boost and I think it will work

James

P.S. You did do a "cmake .." from the pNXT/src directory?
newbie
Activity: 11
Merit: 0
July 21, 2014, 11:53:23 PM
greetings, I am on dark.poolx.ca mining for 30+ hrs with 20 gh and 6 mh and no payout. just looking to see if anyone has had a payout there in the past 24 hrs i tried to jump on irc but so far i have gone unheard. bout to switch to the other multi


i tested dark.poolx.ca  as well with 1Ths mining for 24hrs and only get 3 btcd
and max getting pay with 10 btcd in 24hrs

and its not worth so better use your sha-256 rig  to mine BTC instead of BTCD
if any pool can give promise could mine more margin then mining BTC msg me as i have  500 Ths rig miner in hand now mining btc at the moment

hero member
Activity: 820
Merit: 1000
July 21, 2014, 11:42:47 PM
Hi James,

I have an error linking pNXT.  If you're happy to discuss the issues here than ok, but I'll use pastebin for the errors otherwise it's going to get bloated here really fast Smiley

http://pastebin.com/n2XTYd81


make sure you have clang installed
from the pNXT/src directory do a:
./m_unix

that should make pNXTd in the pNXT/src/src directory

Kind of a mess, but I just used the existing make structure

James

Still no joy... http://pastebin.com/ckV8FewS
sr. member
Activity: 255
Merit: 251
July 21, 2014, 10:50:38 PM
Hi all,

I am Torrn, one of the core devs on this project along with jl777, Azeh, and BTCDDev. I will be here to help out and update info as we develop.

The link below is a transcript of our Dev IRC discussion from yesterday. If you have any questions or ideas that are generated from the discussion, please let us know.  Wink

http://pastebin.com/raw.php?i=RyxMH0fP


Torrn

I really recommend everyone read this. It will give you some insight into BitcoinDark and why this coin is going to do everything we have been promising!  Smiley
newbie
Activity: 41
Merit: 0
July 21, 2014, 10:49:03 PM
Hi all,

I am Torrn, one of the core devs on this project along with jl777, Azeh, and BTCDDev. I will be here to help out and update info as we develop.

The link below is a transcript of our Dev IRC discussion from yesterday. If you have any questions or ideas that are generated from the discussion, please let us know.  Wink

http://pastebin.com/raw.php?i=RyxMH0fP


Torrn
legendary
Activity: 1246
Merit: 1000
July 21, 2014, 10:45:30 PM
Well this is certainly going to be better then darkcoin

Yep

I feel this is what dark should of been, but it had a lot of problems.  

Bitcoin dark is instamine free !

Plus better people behind the coin

I'd argue it is what Bitcoin should have been  Grin
legendary
Activity: 1246
Merit: 1000
103 days, 21 hours and 10 minutes.
July 21, 2014, 10:36:40 PM
Well this is certainly going to be better then darkcoin

Yep

I feel this is what dark should of been, but it had a lot of problems.  

Bitcoin dark is instamine free !

Plus better people behind the coin
legendary
Activity: 1176
Merit: 1134
July 21, 2014, 10:36:17 PM
Did the mining period end already.

moneysupply: 270645.74057064
proof-of-work : 775139.88930147

Something is not matching for me here

How are the 20 Million coins generated

Staking is how

It will take over 50 years to get there
legendary
Activity: 1246
Merit: 1000
103 days, 21 hours and 10 minutes.
July 21, 2014, 10:34:11 PM
Did the mining period end already.

moneysupply: 270645.74057064
proof-of-work : 775139.88930147

Something is not matching for me here

How are the 20 Million coins generated

Staking is how
Jump to: