Bitcoin Forum
August 28, 2024, 01:28:08 AM *
News: All versions of Windows are affected by a critical security bug; make sure you update.
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 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 »
1981  Bitcoin / Bitcoin Technical Support / Re: Questions RE: setting up Lightning Node on Raspberry Pi with Stadicus' guide on: January 16, 2019, 12:26:08 AM
When I try downloading Zap without sudo I get the other error (package github.com/LN-Zap/zapconnect: mkdir /home/admin/go/src/github.com: permission denied). I checked environment details again and they look to be the same, details below.

Okay, that's great. For some reason permissions are not working properly so we will have to do it in a bit insecure way. Use sudo chmod -R 777 ~/go (this will allow every single user to modify the contents of folders and files inside go) and then run go get -d github.com/LN-Zap/zapconnect. I am too sleepy to think of a better solution.
1982  Bitcoin / Bitcoin Technical Support / Re: Questions RE: setting up Lightning Node on Raspberry Pi with Stadicus' guide on: January 16, 2019, 12:15:55 AM
Hmm, I created those folders and tried to download Zap again with using sudo at the beginning (sudo go get -d github.com/LN-Zap/zapconnect) but now getting the original error message (package github.com/LN-Zap/zapconnect: cannot download, $GOPATH not set. For more details see: go help gopath)

Try running that command without sudo. Also, check what has happened to $GOPATH by typing in go env. If it has changed then use the previous two echo commands to set it again.
1983  Bitcoin / Bitcoin Technical Support / Re: Questions RE: setting up Lightning Node on Raspberry Pi with Stadicus' guide on: January 16, 2019, 12:05:50 AM
I then proceeded to try and download Zap Connect but now get the following output

Code:
package github.com/LN-Zap/zapconnect: mkdir /home/admin/go/src: permission denied

It looks like Go requires three more folders to work. Use sudo mkdir ~/go/bin ~/go/src ~/go/pkg. You can also run all the commands from Zap connect with sudo in the beginning just in case.
1984  Bitcoin / Bitcoin Technical Support / Re: Questions RE: setting up Lightning Node on Raspberry Pi with Stadicus' guide on: January 15, 2019, 11:54:25 PM
That worked correctly this time so I continued to check the environment variables with input "go env" and noticed my output didn't match up with the guide

Some of the environment variables must be different in this case. Try the following commands

sudo mdkir ~/go
echo 'export GOPATH=$HOME/go' >> ~/.profile
echo 'PATH="$HOME/go/bin:$PATH"' >> ~/.profile

Log out, connect again to your machine and then run go env to see whether or not GOPATH has changed. If so, try the command from Zap connect.
1985  Bitcoin / Bitcoin Technical Support / Re: Questions RE: setting up Lightning Node on Raspberry Pi with Stadicus' guide on: January 15, 2019, 11:43:46 PM
I guess that you needn't have looked at the environment variables (go env) since it was installed in a different way. You should have moved on to the Zap connect part. Let's try to fix that. Type in the following commands.

sudo rm -r /usr/local/go - to make sure that the folder you have moved is completely deleted
sudo apt-get remove golang - completely getting rid of everything related to the Go. I don't think that purge command is necessary here.
sudo apt-get install golang

Please, let me know if this has worked for you. I am going to bed soon.

Edit: Oh, you have just changed your post. I will answer it in a moment.
1986  Local / Polski / Re: Nowy portfel Ledger Nano X on: January 15, 2019, 09:52:29 PM
Miałem kiedyś Ledgera Nano S, ale sprzedałem go, bo miałem dość problemów z ich dodatkiem Chrome. Altcoiny to nie pokemony dla mnie więc nie muszę mieć ich wszystkich. Nano X jest ciekawy ze względu na większy ekran i możliwość komunikacji przez Bluetooth. Idealne rozwiązanie dla ludzi, którzy chcą mieć przy sobie trochę BTC na telefonie do wydania, ale i tak boją się skorzystać z portfeli mobilnych, które oferują całkiem przyzwoite bezpieczeństwo.

Jest to na pewno kolejna droga, którą teoretycznie można "dobrać się" do urządzenia.

Producent zapewnia, że niemożliwym będzie wyciągnięcie prywatnych kluczy poprzez Bluetooth - po to w urządzeniu znajduje się tzw. Secure Element. Ciekawe jak długo urządzenie wytrzyma ataki. Ostatnio Nano S został pokonany przez małą antenkę w środku.

Cena pozytywnie mnie zaskoczyła. Spodziewałem się co najmniej 150 euro za sztukę. Kupiłbym, ale posiadam już Trezora T oraz Trezora One. Może jest ktoś chętny do odkupienia Trezora One ode mnie? Wtedy zastanowię się nad zakupem nowego Ledgera Grin
1987  Bitcoin / Bitcoin Technical Support / Re: Non-Spendable on: January 15, 2019, 09:23:34 PM
Log in to your blockchain.info account and click on the 'Security Center' on the bottom-left of the page. You should be able to backup your recovery phrase there. Download Electrum and follow this guide in order to import your wallet. Please note that importing a wallet is not the same as sweeping. If you want your funds to be completely safe then create a new wallet, write down your seed properly and send your funds from the imported wallet to the new one.

How long has it been since you received those coins? Aren't they just unconfirmed? You might be forced to wait 6 confirmations before you will be able to spend them.
1988  Bitcoin / Bitcoin Technical Support / Re: Questions RE: setting up Lightning Node on Raspberry Pi with Stadicus' guide on: January 15, 2019, 08:08:55 PM
Will definitely try the second suggestion if the first one fails! What exactly does that command do? (sudo apt-get install golang)

sudo apt-get install golang automatically installs Go and other dependencies in case they are needed on your system. I wonder why it isn't mentioned in the tutorial. There is a slight chance that the repository won't be available for your OS (I can't recall which version it was) and the whole installation will fail. If you don't want to play around with the 32 bit version then you can try using this command first.
1989  Bitcoin / Bitcoin Technical Support / Re: Questions RE: setting up Lightning Node on Raspberry Pi with Stadicus' guide on: January 15, 2019, 06:48:06 PM
What do you mean by reverting everything though? How would I do that?

In this case, it means that you have to get rid of the version that you have currently installed. You can do it easily by typing in sudo rm -r /usr/local/go because you have installed it manually. If you get 'Unknown directory error' or something similar then you must have done something wrong in the first place. Don't forget about the second suggestion if the first one doesn't work for you.
1990  Bitcoin / Bitcoin Technical Support / Re: Questions RE: setting up Lightning Node on Raspberry Pi with Stadicus' guide on: January 15, 2019, 11:37:57 AM
There are two things that I would try if I were you:

1) Download the 32 bit version of Go instead of the 64 bit one. https://dl.google.com/go/go1.11.4.linux-386.tar.gz

2) If the first suggestion doesn't work then use the following command sudo apt-get install golang

Don't forget to revert everything you have done so far before trying out each of these.
1991  Bitcoin / Development & Technical Discussion / Re: LN Sphinx streamable money? on: January 14, 2019, 11:17:02 PM
There aren't many articles on Sphinx since the commit was created 4 days ago. Lightning Network invoices contain a lot of important information which is required for sending a payment (destination, payment hash, number of satoshis, expiry, timestamp and cltv expiry). In Spinx, invoices are replaced with the EOB which allows to encode extra data for the receiver. That is what I managed to conclude from the available information. Please, correct me if I am wrong. I will continue my research tomorrow.
1992  Bitcoin / Bitcoin Technical Support / Re: Questions RE: setting up Lightning Node on Raspberry Pi with Stadicus' guide on: January 14, 2019, 06:33:11 PM
Any ideas?

Try installing Go automatically by typing in sudo apt-get install golang. You must have done something wrong during the manual installation.

Edit:

I'm assuming I would skip straight to the "Zap Connect" section since everything before that seems to be instructions on setting up a node.

Ah, you shouldn't have skipped that much. The skipped part describes the installation process of LND and Go which is necessary.
1993  Bitcoin / Development & Technical Discussion / Re: [ASK] Public Key on: January 12, 2019, 02:33:10 PM
public key: A number that corresponds to a private key, but does not need to be kept secret. A public key can be calculated from a private key, but not vice versa. A public key can be used to determine if a signature is genuine (in other words, produced with the proper key) without requiring the private key to be divulged. In Bitcoin, public keys are either compressed or uncompressed. Compressed public keys are 33 bytes, consisting of a prefix either 0x02 or 0x03, and a 256-bit integer called x. The older uncompressed keys are 65 bytes, consisting of constant prefix (0x04), followed by two 256-bit integers called x and y (2 * 32 bytes). The prefix of a compressed key allows for the y value to be derived from the x value.

There is no detailed article on public keys on the Bitcoin Wiki, but you can learn about public key cryptography from this Wikipedia entry.
1994  Economy / Service Discussion / Re: Discord Nitro with Bitcoin on: January 07, 2019, 08:55:12 PM
Haven't they just introduced Discord Nitro gifting? HypeSquad members were given free Discord Nitro gift on the 20th December so that they could test out this feature. Bitefill introduced Steam gifts after Steam removed BitPay payments.

Edit: @TryNinja I am aware of that. My point is that gifting has just been introduced and Bitrefill didn't have much time to introduce it.
1995  Bitcoin / Hardware wallets / Re: Ledger Nano X - new mobile focused hardware wallet on: January 07, 2019, 08:38:31 PM
Edit: Sad thing is the OTG cable for the Ledger S is f**-ing expensive. 30% of the price of the device.
And i read somewhere a generic OTG cable won't work.

Are sure about that? I am quite sure that I managed to get it to work by simply using USB to micro-usb converter provided by Samsung with the original cable. The same goes for Trezor. It works perfectly fine.

I agree with asche. Even after thinking, i only can think the possibility 3rd party get transaction data which transmitted over bluetooth which could break user's privacy, but it's not realistic scenario.

Ledger claims that data sent over Bluetooth is end-to-end encrypted. What about man-in-the-middle attacks?
1996  Local / Polski / Re: Bitomat w Krakowie on: January 07, 2019, 02:40:31 PM
ciekawi mnie jedno, czy są tam kamery i jak z anonimowością hmmm ?

Bitomaty głównie trafiają do ruchliwych miejsc (najczęsciej do centrów handlowych), które są objęte monitoringiem. Nie mam pojęcia czy każdy bitomat posiada swoją własną kamerę. Część z nich na pewno ją ma do zeskanowania kodu QR zawierającego adres BTC osoby chcącej zakupić monety. Wątpię żeby ktokolwiek stał przy nich przez cały dzień i wyszukiwał sobie potencjalne cele. Jeżeli nie chcesz, żeby bitomat wiedział ile tak naprawdę monet znajduje się na twoim adresie to możesz skorzystać z mikserów monet.
1997  Bitcoin / Hardware wallets / Re: Ledger Nano X - new mobile focused hardware wallet on: January 07, 2019, 02:06:21 PM
I never had this kind of problem. What would be "missing transaction"?
You can always use Electrum with your ledger nano. It works perfectly and gives you all control over your coins  an average user needs

Some of my transactions would not show up or it would take ages for the Chrome app to load (certainly not because of my PC). I was aware of Ledger support in Electrum but I was disappointed with the provided software.

Maybe I get a Nano X in the future because of the Bluetooth or just buy an old Android phone to play around with it.

Carrying a separate phone only for Ledger would be pretty inconvenient. For how long have you had your Ledger Nano S?
1998  Bitcoin / Hardware wallets / Re: Ledger Nano X - new mobile focused hardware wallet on: January 07, 2019, 12:18:05 PM
Honestly, 119 euro isn't really that much. I thought it would be somewhere around 150 euro. I bought my Ledger Nano S for 100 euro but I quickly got tired of missing transactions (due to enormous load on Ledger servers back then) and decided to sell it to a friend. Has anyone pre-ordered it yet? How does Ledger Live work in comparison to the deprecated Chrome app? Does it perform better?

All I want to know is if this mobile app is going to be exclusive for the new device or if that's the new app that they promised back when they were developing the Ledger Live dashboard (and if it's going to work with the Ledger Nano S).

Fortunately, Ledger mobile app will be also compatible with older models (Ledger Nano S and Blue). Source:

Android users will be able to use the On-The-Go cable kit to connect their Ledger Nano S or Ledger Blue to their smartphone. This functionality will later be added as a software update to the Ledger Live mobile app. iPhone users are out of luck due to restrictions of the iPhone's Lightning port.
1999  Bitcoin / Development & Technical Discussion / Re: Lightning Network Discussion Thread on: January 06, 2019, 11:57:53 AM
Eclair (Android) has been renamed to Eclair Mobile and received an update. User is now able to select to which Electrum server he wants to connect to. Receiving LN payments will be enabled somewhere in 2019 after LN 1.1 goes live (dual-funding and liquidity advertisement is needed). More information can be found in this article.
2000  Other / Beginners & Help / Re: Funds in Watch Only Wallet Help on: January 03, 2019, 08:05:50 PM
So in the watch wallet I would create an offline transaction and then sign this on the Offline computer and the broadcast it to the recipient is that correct?

Exactly. Keep in mind that you can't broadcast signed transaction on the offline computer so you have to move it to the other computer.

Do you know why the balance in the watch only wallet does not appear in the BitCoin Core wallet ?

Are you sure that your Bitcoin Core synchronizes correctly with the network? I am quite sure that there was a command which allowed you to check if your private key is related to a certain Bitcoin address. I can't recall it right now. Did you use your public key to create the watch only wallet?
Pages: « 1 ... 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!