Bitcoin Forum
May 11, 2024, 12:05:19 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 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 ... 514 »
181  Bitcoin / Hardware wallets / Re: Ledger Live Update on: November 03, 2021, 01:08:46 AM
I always wait a little bit when it comes to installing Ledger updates. That goes for firmware updates, app updates, or LL updates. Especially firmware upgrades shouldn't be rushed unless a serious vulnerability has been discovered and patched in the newest version. You always want to wait and see if some bugs or problems pop up that need to be fixed first, and I would rather not be on the receiving end of such issues. 
Not the worse advice ever. I'm somewhat lucky that I'm generally not transacting every day... so by the time I actually notice there is an update to be had, it's generally been a decent amount of time (ie. days) between the update being released and me noticing Cheesy

But yes, I certainly don't blindly click the "update now" button... I'll go find the release notes and see what has been updated/fixed/modified... and then have a quick scout of here/reddit/google to see if there are any widespread reports of issues.
182  Bitcoin / Development & Technical Discussion / Re: !!! RED ALERT: SHIELDS UP, TROJAN SOURCE HAS ARRIVED !!! on: November 03, 2021, 12:34:24 AM
I haven't even read this document fully yet
Maybe come back and let us know what you think after you have actually read the document fully.


Fake vaccines, now we have FAKE SHIELDS and FAKE CODE LOL ! =D
This forum needs a #facepalm emoji... Roll Eyes Roll Eyes Roll Eyes
183  Bitcoin / Development & Technical Discussion / Re: Looking for some help regarding a transaction issue with Bitcoin - CLI on: November 03, 2021, 12:21:03 AM
You don't explicitly set a fee value when creating transactions like this... the fee is implicitly set as the different between sum(inputs) and sum(outputs).

So, if you have:
InputA + InputB + ... + InputN = 0.01 BTC
and
OutputA + OutputB + ... + OutputN = 0.00999500 BTC

0.01 - 0.00999500 = 0.00000500

Then you have effectively set the fee to be 0.00000500 BTC... the hard part is that it isn't "total fee" that generally determines your transactions chances of being picked up and included in a block... it's the fee rate... ie. (total fee / transaction "size"[1]).

Unfortunately, the estimation tools available (estimatefee and estimaterawfee) give answers in fee rate... and not total fee, so you'll need to do some maths on how big your transaction is going to be, to work out what the "total fee" should be.

Theoretically, you could just do what you've done, and create the transaction with Sum(Inputs) == Sum(Outputs), then check what the transaction size is... then use that value along with the estimated fee rates to calculate how much to reduce the "change" output by... then recreate the transaction using the newly calculated change value and hope for the best Tongue



[1] We'll ignore the size vs. weight for the minute.
184  Bitcoin / Bitcoin Discussion / Re: Possible to get BTC wallet with 2 different changable passwords? on: November 03, 2021, 12:00:25 AM
Is there a platform that can generate a BTC wallet that requires 2 passwords - similar like multisig. So to get into the wallet and send BTC from there, you would have to enter 2 different passwords dependent on each other.
Is the idea that 2 people would be working on the same machine to send transactions and you need both users to enter their password for this to happen? ie. you're essentially trying to force multisig but using just a password instead of signing with private keys? Huh

I don't think any system exists... at least, I don't know of any such system. Personally, I think you'd be better off just having a 2-2 MultiSig wallet in a wallet like Electrum. Each user would have their own copy of that wallet with their own password.

When you want to send coins, either person would be able to open their wallet and create and partially sign the transaction (using their password) and then pass to the other person to sign and send using their password.


The passwords have to be changable independently of each other. So everyone with a password can handle it for itself.
With a standard MultiSig wallet, as described above, each of the user's copies of the multisig wallet would operate independently of the other, so the passwords could be changed independently of the other without issue.
185  Bitcoin / Development & Technical Discussion / Re: [Guide] How to run a Bitcoin Core full node for under 50 bucks! on: November 02, 2021, 11:37:12 PM
That's the great thing about all of this... there are plenty of ways to skin the proverbial cat Wink  Plenty of options to get up and running in a way that suits your budget, your physical space requirements, power limits, mobility requirements etc.

Pi's tucked away behind your monitor, an old repurposed desktop sitting in your closet, you daily driver laptop etc etc... modern technology is great Smiley

186  Bitcoin / Bitcoin Technical Support / Re: PROBLEME BITCOIN CORE on: November 02, 2021, 11:27:14 PM
I am sure and sure to have a bitcoin core account after I no longer have my credentials, apparently I have it in my bone !!!
What "credentials" are you talking about? Bitcoin Core has exactly one type of "credential"... the wallet passphrase (it's just an encryption password) and for that to be useful, you absolutely 100% require the wallet.dat file.

If you don't have access to the wallet.dat file, you're not recovering your Bitcoin Core wallet.
187  Bitcoin / Bitcoin Technical Support / Re: Bitcoin Core seems to be stuck while synching? on: November 02, 2021, 05:41:06 AM
It likely won't help much... even with USB3.0, the read/write speeds are still orders of magnitude less than with physical RAM... and with a machine with those specs, I'm not even sure it will have USB3.0.

You'll likely find that the HDD I/O is faster anyway... but if you have a spare "hi speed" flashdrive laying around, give it a go and report your findings Wink
188  Bitcoin / Electrum / Re: Air Gapped on Windows or Tails? on: November 02, 2021, 05:34:24 AM
I was not saying about airgapped but in general, and Win OS is collecting data and all your activity even if you are not connected to the internet, so anyone who get's access to your computer will have that data.
I would say that is a security risk if you are thinking about choosing OS to use with electrum in arigapped system.
If someone has access to your offline, airgapped computer... you have much bigger issues than the fact they might be able to download some tracking metrics from Cortana Roll Eyes
189  Alternate cryptocurrencies / Altcoin Discussion / Re: How to spend Bitcoin Cash without the corresponding transaction being mirrored? on: November 02, 2021, 04:43:47 AM
Nope, if you have an input that predates the forks and send it to another legacy address it can be broadcast on the other chains.
So, what happened to the whole SIGHASH_FORKID thing that the Bitcoin Cash devs implemented at the eleventh hour (it went in like a day or 2 before the fork)? Huh

https://bitcoin.stackexchange.com/a/102405

Addresses between BTC and BCH are "compatible" yes... but transactions are not... again, the replay attack stuff was purely with BCH and it's forks (BCHA BSV etc)
190  Bitcoin / Development & Technical Discussion / Re: [Guide] How to run a Bitcoin Core full node for under 50 bucks! on: November 02, 2021, 12:24:36 AM
A couple of other advantages that the single board units like the Pi have is "size" and "power draw"... Even with a case on it, the Pi is a very compact unit, and easily fits on my desk behind my monitor etc. I don't have a lot of room in my workstation area (or anywhere else in my apartment for that matter) and having a unit like a laptop or old desktop in addition to my actual PC isn't really practical.

Then there is the power draw... the Pi runs on a 5V USB charger. It uses next to nothing in terms of power draw... at max load, the CPU is only consuming something like 6 or 7W! Shocked And an external drive will only be adding ~5W more at most.
191  Alternate cryptocurrencies / Altcoin Discussion / Re: How to spend Bitcoin Cash without the corresponding transaction being mirrored? on: November 01, 2021, 09:58:46 PM
Isn't this all rather moot considering that BCH implemented 2-way replay protection? Huh

As far as I'm aware, you can't broadcast a BTC transaction on the BCH chain and you can't broadcast a BCH transaction on BTC chain. The replay issue was only really a thing when the BCH/BCHA/BSV forks happened with no replay protection.
192  Bitcoin / Development & Technical Discussion / Re: Watching a bunch of addresses using -zmqpubrawtx=<address> on: November 01, 2021, 09:51:14 PM
So from here I can inspect the vouts, and each "value" and "address". The question now is, although address is an array, it appears that each vout only corresponds to one address.

Can I safely take the first address in each vout and assume it has the value listed? Or will it ever emit multiple addresses in one out? (That doesn't make any sense though).
This answer by Peter Wuille sums it up nice and succintly: https://bitcoin.stackexchange.com/a/11311

Essentially, it is theoretically possible, but very unlikely, that you could get multiple addresses here.

You can either code it expecting to only ever get 1 address, and then pray it never happens (Bad Plan™ refer: Murphy's Law)... or implement some kind of exception handling to handle the multiple address case so your program doesn't crash... even it is just logs it and then ignores the transaction and continues on it's merry way. ("Better Plan"™).
193  Bitcoin / Bitcoin Technical Support / Re: PROBLEME BITCOIN CORE on: November 01, 2021, 09:40:49 PM
no ba so I just entered a seed so I wrote down on a piece of paper that cannot be found what to do?
please
For wallets that use a seed mnemonic ie. 12/24 words (NOTE: Bitcoin Core does NOT use this backup method)... If you don't have the seed mnemonic (ie. you lost your paper), and you don't have access to the wallet file, then there is nothing you can do. Your coins are lost.

For Bitcoin Core, it doesn't use 12/24 words seed mnemonic... so you absolutely must have the wallet.dat (or some other record of the private key). Without those, you will not be able to recover your coins.
194  Bitcoin / Development & Technical Discussion / Re: Compile Bitcoin first version on Linux - Windres issues on: November 01, 2021, 09:30:57 PM
Question has any one check that we can minning block as minus block - like ( example -10)?
The "generate bitcoins" option just enables the builtin CPU-based miner. It doesn't do anything that a "normal" miner does and, being as old as it is, is probably not terribly well optimised.

What do you mean by a "minus block"? Huh What exactly are you trying to achieve here? Huh
195  Bitcoin / Development & Technical Discussion / Re: 64. Can the Transfer of the Inventor of the Puzzle Be Manipulated? on: October 31, 2021, 11:36:40 PM
Just as a test I ran Kangaroo using CPU only... (6 core, 12 threads Ryzen 5 3600)... It solved the #63 puzzle in 2:40



Using just the GTX1080, Kangaroo solved it in 26s. Shocked Shocked Shocked



Obviously the #64 puzzle is significantly larger than #63... but then I tried the #65 puzzle (which is even larger) and the GTX1080 solved that in only 1:34



Having such a small range, and the pubkey really does make cracking these private keys very trivial.
196  Bitcoin / Development & Technical Discussion / Re: Compile Bitcoin first version on Linux - Windres issues on: October 31, 2021, 10:56:47 PM
Are you talking about the "Generate Bitcoins" menu option that was in the original client? Huh

I'm not aware of any "Earn Bitcoins" tab... mind you, I never used the original client, and, as it turns out, there don't seem to be many screenshots of it floating around on the internet... at least, not of the "options" menu. Only the main screen like this one:


(source: https://twitter.com/bit_fix/status/505105572946247680)


197  Bitcoin / Bitcoin Technical Support / Re: Recovering deleted wallet/files from HDD on: October 31, 2021, 10:39:20 PM
Safest option is not to use file-based wallets anyway if you can afford it.
What would you recommend if not "file-based wallets"? Are you talking about hardware wallets? Huh
198  Bitcoin / Bitcoin Technical Support / Re: LNBits won't start due to python error on: October 31, 2021, 10:36:14 PM
But regarding the traffic flow in this case, I was not expecting that Hypercorn passes back to Nginx unencrypted data. I thought it would be Internet -> Nginx -> Hypercorn -> LNBits instead of Internet -> Nginx -> Hypercorn -> Nginx -> LNBits.

Why there is this additional data forwarding from Hypercorn to Nginx.
There isn't... it just perhaps wasn't explained very well.... and possibly the <---> isn't the best way to show things either.

Essentially you have "inbound" traffic flow that goes:
Internet ---> nginx (port 5001) ---> Hypercorn (Port 5000) ---> LNBits

Then the outbound flow that goes:
LNBits ---> Hypercorn ---> nginx ---> Internet


nginx is essentially receiving the inbound packets passing them to Hypercorn to do whatever it needs to do with them (pass to LNBits, dump, return webpage etc)... Hypercorn then passes it's response back to nginx, which then passes them back to wherever they need to be going on "The internet"™.
199  Bitcoin / Bitcoin Technical Support / Re: Bitcoin Core seems to be stuck while synching? on: October 31, 2021, 10:20:09 PM
System Hardware Specs: 2.53 GHz CPU with 3 GB RAM and 400 GB free hard drive space.
That's a big ooooof right there... Windows 10 will generally be eating all of that RAM on it's own... let alone trying to have Bitcoin Core do it's thing as well. Undecided

If that RAM value is correct, your system is likely page swapping like crazy, which will impact on the disk I/O which is one of the main bottlenecks for Bitcoin Core to sync (hence why SSDs are recommended).

If you can, add more RAM and/or an SSD as well... otherwise, your only real option is to just wait it out Undecided
200  Bitcoin / Development & Technical Discussion / Re: 64. Can the Transfer of the Inventor of the Puzzle Be Manipulated? on: October 31, 2021, 07:50:42 AM
Given that the private key range is known for each puzzle, I am not sure I understand the advantage that someone will have once the public key is known.
For Pollard's Kangaroo, you need to know the public key that you're trying to match.

OP was theorising that once they publish their transaction, someone could use Pollard's Kangaroo to trivially solve the private key in a matter of minutes and then publish their own transaction stealing their prize.

I'm not overly familiar with the performance of this particular algorithm or the available scripts for it... but if the actual winner just disables RBF and sends with a "decent" fee, the odds of their prize being "stolen" would be pretty minimal, I would think.
Pages: « 1 2 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 ... 514 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!