Bitcoin Forum
July 04, 2024, 06:00:19 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 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 ... 136 »
1041  Bitcoin / Bitcoin Technical Support / Re: Few questions (First time Lighting,Wasabi & CoinJoin,using Bitcoin Core offline) on: April 24, 2020, 08:14:29 PM
for lighting, do not I need to swap btc to l-btc first in order to be able to transact via lighting ?

No, you don't have to swap your bitcoins. The Lightning Network doesn't use any form of tokens; it uses real bitcoins. In order to be able to transact using the Lightning Network, you have to open a channel using a wallet which supports the Lightning Network (i.e. Zap, Eclair Mobile). When you open a channel, you lock up your coins in a multi-signature address which is controlled by you and the other node. Once you have opened your channel, you can send payments over the LN (with some limitations). Every time you send a payment over the LN, the balance of the channel updates but it's not broadcast to the Bitcoin network in order to save money on the fees. If you want to retrieve your coins on-chain then you have to close the channel. The amount of coins + routing fees you spent on the LN will go to the other node's address while the rest minus the closing fee will be returned to you.

It's a little bit more complicated than that; consider reading basics of the Lightning Network and The Lightning Network FAQ if you want to learn more. It's not a perfect solution. Keep in mind that some of your payments might fail and not many merchants accept LN payments.
1042  Bitcoin / Bitcoin Technical Support / Re: Few questions (First time Lighting,Wasabi & CoinJoin,using Bitcoin Core offline) on: April 24, 2020, 06:46:07 PM
could I do the following offline [...] and when bitcoin core is online,

- the transaction gets broadcasted to the network/blockchain and eventually you will get the 0.1 btc I have sent you

Yes, your transaction will be broadcast once Bitcoin Core has been fully synchronised with the network after you go online. You can always sign a transaction in Bitcoin Core and broadcast it using third-party software without having to wait for the sync to finish if you need to spend your funds urgently (assuming you synchronised your wallet at some point).
1043  Bitcoin / Bitcoin Discussion / Re: What is the most trusted bitcoin company? on: April 23, 2020, 11:05:09 AM
And how do I know that bitaddress.org doesn't store its private and public keys in database?

You can download the website files (see GitHub respository) and run them on an air-gapped PC. This will ensure that the keys are not sent anywhere.

What's the point of that site anyway?

You don't have to install anything and you can easily generate a paper wallet if you don't trust other forms of storage. Paper wallets are not really convenient if you intend to spend your coins often and this one in particular generates only legacy addresses.
1044  Bitcoin / Electrum / Re: [GUIDE] How to Safely Download and Verify Electrum [Guide] on: April 23, 2020, 10:38:18 AM
Okay, so now that I've verified that my files are authetic, I can simply uninstall kleopatra and gpg right?

Yes, but I would recommend you to keep them. Electrum updates are not released very often but you also should verify their installation files especially if Electrum is going to be your main wallet. You might forget to reinstall them or skip the verification process which might result in a loss of funds.
1045  Bitcoin / Electrum / Re: [GUIDE] How to Safely Download and Verify Electrum [Guide] on: April 23, 2020, 10:04:35 AM
How can a scammer fool the official site of electrum since it's owned by Thomas?

There's a slight chance that the website might be compromised in the future; nothing is completely secure. The files might be replaced without any other changes to the website. Also, there have been many phishing attempts related to Electrum updates or typos in the official website's name. Verifying the signature can save you from a fatal mistake.
1046  Bitcoin / Bitcoin Discussion / Re: What is the most trusted bitcoin company? on: April 23, 2020, 09:15:24 AM
I just read that downloading from electrum.org is not completely verified process.

That's why you should follow this guide which was already linked in this thread. This process ensures that the installation file wasn't replaced with a malicious version which could steal your coins.

So I have a question. If someone sends me bitcoins (to the BTC Address I have in my signature) will they arrive after the mining to my wallet?

As long as the address belongs to your wallet, yes. In fact, you will see the coins a moment after they have been sent, but they will appear as unconfirmed.
1047  Bitcoin / Bitcoin Technical Support / Re: [Testnet] Is this normal? on: April 20, 2020, 10:14:00 PM
How exactly are these hashes calculated? Do they have to do with the current timestamp?

No, a transaction hash has nothing to do with the current time and it doesn't require you to have a synchronized client. Take transaction data, calculate its SHA256 hash and do it once again for the calculated hash. You can find answers to some of your questions on the Internet. Do some research; you will learn more.
1048  Bitcoin / Bitcoin Technical Support / Re: [Testnet] Is this normal? on: April 20, 2020, 09:33:24 PM
Why did they disable it? Was it affecting the network somehow?

No, it was completely useless. You wouldn't even earn a cent using your CPU on the mainnet nowadays.

I had read that in order for a transaction to be counted on all blockchains in the world, it is required to exist at least 6 confirmations.

For small payments, even 1 confirmation is enough. Confirmed blocks are propagated quite fast (orphaned blocks are still a thing, though). The amount of confirmations ensures that coins won't be double-spent. Some wallets and services consider 3 confirmations as safe enough.

But if I am alone on my local network, how will I confirm my transactions?

You confirm transactions by including them in blocks and mining them. The first confirmation is when a transaction is included in a block. Each new mined block adds another confirmation.
1049  Bitcoin / Bitcoin Technical Support / Re: [Testnet] Is this normal? on: April 20, 2020, 08:43:20 PM
Another question, in the testnet are things a bit more real? I mean I can't do just "generatetoaddress 10000 <my_address>". Do I need to mine like in real bitcoin?

You don't need to mine real coins. You wouldn't be able to earn much anyway. Both testnet and mainnet are full of ASICs which are far superior to CPUs in terms of mining. If you need to use testnet for some reason then get coins from faucets. You can no longer mine with your CPU using Bitcoin Core since version 0.13.0.
1050  Bitcoin / Bitcoin Technical Support / Re: [Testnet] Is this normal? on: April 20, 2020, 08:09:14 PM
And of course on commands like "getblockcount" it returned "0". But how will I mine the genesis block? Can you help me here?

You can use generatetoaddress to generate new blocks. If you type it in the console, you will see a detailed explanation on the parameters and instructions on generating a new address. I don't think if there is any point in me explaining it. Keep in mind that coins are spendable 100 blocks after they have been mined.
1051  Bitcoin / Bitcoin Technical Support / Re: [Testnet] Is this normal? on: April 20, 2020, 07:52:05 PM
Why is says I'm years behind?

Take a closer look. There are no more blocks left to download and there are no peers to connect to since you are the only node in your local setup. You can now open the console and enter regtest specific commands.
1052  Bitcoin / Bitcoin Technical Support / Re: [Testnet] Is this normal? on: April 20, 2020, 05:58:37 PM
I did what you told me but where is the "mainnet" you said? I can't find it in the file. (Only testnet = 0 and regtest = 1)

You need to remove '#' which is in front of both testnet and regtest - https://pastebin.com/raw/q9eY936e . Replace your config with this and it should work now.
1053  Bitcoin / Bitcoin Technical Support / Re: [Testnet] Is this normal? on: April 20, 2020, 05:44:54 PM
What parameters? When I open bitcoind.exe I can't write anything, it starts doing that "mining" thing.

Let's do it the other way. Shut down Bitcoin Core, press WIN + R and enter %appdata%. You should see Bitcoin folder inside which there should be bitcoin.conf file. If you don't have one, create it. Inside that file enter regtest=1 and make sure that both testnet and mainnet are set to 0. Now, launch Bitcoin Core and you should be in the regtest mode. You can use commands in the console (Window -> Console).
1054  Bitcoin / Bitcoin Technical Support / Re: [Testnet] Is this normal? on: April 20, 2020, 05:25:05 PM
Does it mine or anything?
https://youtu.be/AlQCCXnRQ5Q

It seems to be still synchronizing with the testnet. What are your startup parameters for bitcoind? Did you add '-regtest' there?
1055  Bitcoin / Bitcoin Technical Support / Re: [Testnet] Is this normal? on: April 20, 2020, 05:05:25 PM
I wonder, are there places to "buy" testbitcoins? Or is it too easy to mine them?

Testnet coins shouldn't have any value and shouldn't be sold. There are plenty of faucets which send under 0.1 tBTC at a time. You can google them.

About my issue, I just want to test how bitcoin core works for developing reasons. Should I choose regnet?

Sure, it should suit your needs.
1056  Bitcoin / Bitcoin Technical Support / Re: [Testnet] Is this normal? on: April 20, 2020, 04:39:13 PM
And how much storage will it take to download 1,5M blocks? The mainnet's blockchain is 250GB+ long.

According to the blockchair.com block explorer, the size of the testnet blockchain is 24.26 GB. You can run your node in a pruned mode to save your disk space, but you will still need to download and verify all the blocks.
1057  Bitcoin / Bitcoin Technical Support / Re: [Testnet] Is this normal? on: April 20, 2020, 03:24:08 PM
So the difference between regnet and testnet is that on regnet I can create as many satoshis as I want?

You can create any amount of coins you want and generate blocks instantly. You don't have to wait for the client to sync with the network since it's basically a private, local blockchain. This page should help you.
1058  Bitcoin / Hardware wallets / Re: Trezor T (2.3.0) and Trezor One (1.9.0) firmware update on: April 18, 2020, 09:25:40 AM
What happens if the SD card breaks or malfunctions and you are no longer able to use it to extract the secret code?

You can either boot the device into bootloader mode and reinstall the firmware or enter a wrong PIN 16 times to reset the device. The secret can be copied manually so one can have few SD cards or an encrypted backup.
1059  Bitcoin / Hardware wallets / Re: Trezor T (2.3.0) and Trezor One (1.9.0) firmware update on: April 17, 2020, 10:06:53 PM
This seems to imply that they just moved the prompt from the device into the webwallet (hots)... so it would appear that you can still choose to enter the passphrase on the device, you just have to click the "Enter on device" button on the web wallet UI first.

Oh, I haven't tried the web interface because it doesn't support native SegWit. I have disabled '--force-on-device' option and tried it to access it. While it works just like you described on their web wallet, third-party wallets obviously don't ask the user how they would like to enter the passphrase; host entry is forced. I don't understand why it's not possible to change that behaviour under 'Advanced' tab in the web interface. People who don't want to expose their passphrase and don't know how to install trezorctl now have to wait for a software update of the wallet they use to access their coins safely.
1060  Alternate cryptocurrencies / Altcoin Discussion / Re: BCH sent to BTC wallet on: April 17, 2020, 08:40:48 PM
I believe the BCH was sent to a legacy address. The address began with '1'. My sincere apologies for the delay in responding to you guys. I've logged-in tonight and I'm very pleasantly surprised by the number of responses, thank you! I'd be very grateful to receive simple easy to follow instructions on how I can claim/access this BCH? Hoping someone can please help? Thank you  

Since you sent your coins to a legacy address, you only need to export the private key corresponding to the address you sent your coins to in Electrum (Wallet -> Private keys-> Export) and recover your wallet in Electron Cash. You should be able to use your recovery phrase there if you still have it so try using it first.
Pages: « 1 ... 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 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 ... 136 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!