Why does Blockchain (the company) open source their code but not license it?

0

I'm very curious as to why Blockchain (the company) doesn't license their open source software. Also, does this mean we (the public) can just use their software and license it using Apache's 2.0 license?

David

David Whitehurst

Posted 2018-05-23T15:34:48.783

Reputation: 101

What specific code are you talking about?Pieter Wuille 2018-05-23T16:25:34.247

Well, I'm trying to create my own wallet and I now reallize that the V3-Frontend, calls back to the V3-Wallet (core) code. I want to modify and reduce the wallet's functionality and have it's look-feel be my UI changes. I do however want to use the bitcoin core wallet code (V3-Wallet) for whatever I produce as a wallet for the public to use with BTC. I'm really just curious why the company (Blockchain) would host their code openly without an open source license.David Whitehurst 2018-05-23T18:13:06.580

They do. For example, here you can see that this piece uses an ISC license. Without a license, you couldn't even creatively modify the code.

David Schwartz 2018-05-23T19:38:00.130

Answers

1

If they haven't put a license, it means it is "All rights reserved" You can refer to these questions about it:

https://stackoverflow.com/questions/4007674/whats-the-default-license-of-code-published-at-github

https://softwareengineering.stackexchange.com/questions/148146/open-source-code-with-no-license-can-i-fork-it

https://opensource.stackexchange.com/questions/1720/what-can-i-assume-if-a-publicly-published-project-has-no-license

It probably means "You can use it for yourself, and for small projects. However, if we want, we may shut down all your projects containing our code."

MCCCS

Posted 2018-05-23T15:34:48.783

Reputation: 5 827