Bitcoin Forum
May 02, 2024, 05:58:19 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 »
2681  Bitcoin / Development & Technical Discussion / Re: Where does blockchain store adresses of wallets? on: June 19, 2019, 03:24:35 PM
For reference, Bitcoin Core use LevelDB and have 3 separate database which are :
1. blocks, which store all blocks
2. chainstate, which store all UTXO
3. txindex, which index of all transaction. It's turned off by default

If you wonder why LevelDB is used, you might want to check https://en.bitcoin.it/wiki/Bitcoin_Core_0.11_(ch_2):_Data_Storage#Use_of_LevelDB
2682  Bitcoin / Bitcoin Technical Support / Re: Can bitcoin core retrieve a password after forgetting it? on: June 19, 2019, 03:17:14 PM
Information you're provided is useless, what you should do are :
1. Attempt to recovery your wallet with software such as https://github.com/gurnec/btcrecover
2. Contact bitcoin wallet recovery services

But both options are useless if your password length is long or you have no idea about your password such as :
1. Whether use lower case, upper case, number, special character or combination of them
2. Length of your password
3. Part of password you remember
2683  Bitcoin / Electrum / Re: electrum servers on: June 18, 2019, 06:19:26 PM
Electrum has became a bitcoin phishing wallet, just wonder why still people using it!

Various wallet brand has been used for phishing attempt, just wonder why people still use Bitcoin Tongue

Oh.. and btw.. people still use electrum because
1) the vuln has been fixed
2) it is open source
3) it is AT LEAST as secure as other lightweight clients
4) it has almost all necessary features, which are missing in a lot of other wallets

5) Full control over your Bitcoin
6) Widely used with big community
7) Basic privacy is possible (with using secure/trusted proxy & good UTXO management)
2684  Bitcoin / Wallet software / Whirlpool CoinJoin implementation is now in Public Beta! on: June 17, 2019, 06:32:59 PM
https://twitter.com/SamouraiWallet/status/1140611002914004993

https://www.samouraiwallet.com/whirlpool

One more user-friendly wallet with built-in CoinJoin feature.

If this keeps up, default user's privacy will be better in future. I wonder how will chainanlysis and other analysis services deanonymize CoinJoin user.
2685  Bitcoin / Electrum / Re: electrum servers on: June 17, 2019, 07:57:35 AM
Note that every wallet (which is not a full node client) can gather these information.
The only way to circumvent this is to either (1) run your own electrum server or (2) use a different (full node) wallet, e.g. bitcoin core.

On a side note, if you don't change your wallet/address & only run electrum server, another electrum server you're connected could use logged information to track you.

It also apply if you simply send all your Bitcoin to different address/wallet.
2686  Economy / Service Discussion / Re: John McAfee launches the McAfee Magic trading platform on: June 14, 2019, 07:17:19 PM
The website is clearly terribly made, It was done with a minimum effort with clearly no front end developer.

Even back-end developer or beginner can do better by grab MIT-licensed web template.

Their website also missing few important pages such as About, Contact Us and Legal, mobile support isn't exist. I have serious doubt about security of their websites/server
2687  Other / Beginners & Help / Re: Struggling to recover wallet, are my coins gone? on: June 13, 2019, 07:14:07 PM
2) If your wallet file doesn't work on the newest version of Electrum (for some reason), you can try creating a watch-only version of your wallet, building a transaction, sending it to the old version Electrum for signining and broadcast it manually. That's an harder solution, so try out the first one and if it doesn't work, we can try this one.

Simpler solution would be Export all private keys from old Electrum version and import it to new Electrum version.
Just make sure the computer/notebook is secure and clean from malware/spyware.
2688  Bitcoin / Development & Technical Discussion / Re: Does lightning network really solve the scalability problem? on: June 12, 2019, 06:17:40 PM
Bitcoin Blocks can hold a Maximum of ~1.7MB [~7200 transactions] so ~12 transactions per second

Wrong, check those blocks :
1. https://blockchair.com/bitcoin/block/566575

Size (bytes)2,377,364
Weight (weight units)3,993,179
Stripped size538,605

2. https://blockchair.com/bitcoin/block/367853

Transaction count12,239

making 6 meaningless statistical error. its just some single use case sat amungst more meaningful data
median does not actually provide anything meaningful. as 6 has no relevance to the other numbers. the number 6 has not been derived from calculations nor from analysing other stats. its just a number that exists

We could use Box plot in this case
2689  Other / Beginners & Help / Re: What is Transaction malleability? How often will it happen? on: June 11, 2019, 07:12:20 PM
  • Is double spent same thing or is different? How are they same or how are they differentiated?

It's different, the main difference is
  • double-spend transaction have different output
  • malleability transaction only have different transaction hash (input/output exactly same)

  • How often such a thing will occur?

That depends whether someone decide to abuse Transaction malleability

  • Is it fixed?

Yes, if you use SegWit address.

  • Can a miner with 51% mining power can do this? As he/she with 51% power can do 51% attack

Yes, but you don't need any mining power to do it. All you need to are change transaction/signature format of an transaction and broadcast it.
2690  Bitcoin / Electrum / Re: HOW CAN I RECOVER THE BTC FROM WALLET ELECTRUM 2.8, NOT ABLE TO CONNECT? on: June 11, 2019, 06:42:21 PM
You can. Just go into another computer, install Electrum (the latest version), and import your wallet with its backup seed.

Or copy electrum wallet files to the another computer rather than restore with backup/recovery/mnemonic seed.
2691  Bitcoin / Bitcoin Technical Support / Re: Is or was bitaddress affected by this „bug“? on: June 10, 2019, 04:19:37 PM
I'm not sure, but  :
1. The email stated RC4 ("arcfour random") is one of the problem
2. securerandom.js on BitAddress source code use RC4. https://github.com/pointbiz/bitaddress.org/blob/72aefc03e0d150c52780294927d95262b711f602/src/securerandom.js#L58

I'm not an expert, but if the condition is simply using secureRandom then Bitaddress does use it and the repository hasn't been updated since 2016.

The email clearly stated that depends on variations of SecureRandom()

There are a substantial number of variations of this SecureRandom() class in various pieces of software, some with bugs fixed, some with additional bugs added.
2692  Other / Beginners & Help / Re: Let's talk about Privacy on: June 08, 2019, 06:17:59 PM
I'm using the Brave browser, and that has an optional Tor window.

What I'm really looking forward to is the Huawei mobile with an open source OS and privacy browser. Trump seems to be pushing for the creation of this, and it will free me from Google control.

Android OS already completely open-source & there are even some privacy-focused Android distribution (such as LineageOS, Replicant and Copperhead).
You should have acceptable privacy if you don't install any Google application (Gapps) or any closed-source application.

The downside it's not user-friendly like Brave since you might need to root or/and unlock bootloader before install the OS.
2693  Bitcoin / Bitcoin Technical Support / Re: Lost Bitcoin Core wallet. on: June 08, 2019, 04:17:45 PM
If you erased your harddisk you can use tools to recover erased data, read here: https://www.easeus.com/datarecoverywizard/recover-deleted-files.htm

For best result, please make RAW copy of your harddisk and perform any recovery attempt on RAW copy.

To make RAW copy : http://www.hddguru.com/software/HDD-Raw-Copy-Tool/
Perform recovery from RAW copy : https://www.remosoftware.com/how-to-recover-iso-image-file
2694  Bitcoin / Bitcoin Technical Support / Re: Looking for Historical Bitcoin Core Source on: June 08, 2019, 04:09:09 PM
Bitcoin source code on SourceForge is still available at https://sourceforge.net/p/bitcoin/code/HEAD/tree/, SourceForge UI is a bit confusing Tongue

Also, someone also made mirror at https://satoshi.nakamotoinstitute.org/code/
2695  Local / Bahasa Indonesia (Indonesian) / Re: [Edukasi] Privasi dan Anonimitas Bitcoin on: June 08, 2019, 03:49:09 PM
Panjang juga thread agan Shocked

Mungkin bisa ditambahkan topik tentang Taproot, MAST & Schnorr Signature dan melihat https://en.bitcoin.it/wiki/Privacy sebagai referensi tambahan.

Meskipun pada dasarnya Bitcoin menawarkan transaksi anonim,

Model transaksi pseudonymous, bukan anonim/anonymous. Anonimitas bisa hilang dengan mudah karena taint.
2696  Other / Archival / on: June 04, 2019, 05:49:25 PM
2697  Bitcoin / Development & Technical Discussion / Re: How big will the blockchain core wallet be to download in 2025? on: May 29, 2019, 06:14:02 PM
Over the last 30 days, the average block size has been 1.188 MB, let's call it 1.2 MB to make calculations easier. There are about 1.792 million minutes between now and the end of 2025. Assuming blocks every 10 minutes (this is not necessarily a safe assumption because blocks are actually produced faster than that, though I don't know the exact number off the top of my head), there will be ~179200 blocks found between now and then. At 1.2 MB per block, that's an additional 215040 MB of block data, which is 215 GB. According to my node, the blockchain is currently 207 GB (this ignores the indexes, databases, and other data necessary to make a node work with just the raw blocks), so 207 + 215 = 422 GB. Thus by the end of 2025, the Bitcoin blockchain will be around 422 GB in size, assuming no block size increase or decrease.

Actually there are about 3.5 million between now and the end of 2025. If we're looking for biggest possible number, then it'd be :
  • Actual block time : 9.4 minutes
  • Biggest block size : 2.28 MB (on block #566575)
  • Minutes between now and the end of 2025 : 3467520
  • Current blockchain size : 252.9 GB (size on my device excluding chainstate & txindex)

3467520 / 9.4 * 2.28 = 841058 MB (821.34 GB)

So blockchain size on the end of 2025 would be : 252.9 GB + 821.34 GB = 1074.24 GB

Source :
1. https://blockchair.com/bitcoin/block/566575
2. https://howlongagogo.com/date/2025/december/31

oh sorry I mean bitcoin core, well I want to be safe that is the whole point of this. Is there no way to stop duplicate addresses from being generated, why not like a address within a address or just like a doubler like 1BDvQZjaAJH4ecZ8aL3fYgTi7rnn3o2thE(1) 1BDvQZjaAJH4ecZ8aL3fYgTi7rnn3o2thE(2)?

The most important question is, why do you want to prevent duplicate address & use address(n) format? There are several obvious disadvantage :
1. Encourage address re-use again
2. Slightly bigger transaction size due to longer address format
2698  Other / Beginners & Help / Re: Anybody explain to me difference between confirmation & block time? on: May 28, 2019, 04:08:11 PM
Block time : Interval time of each mined/generated blocks

Confirmation : Total blocks mined since blocks which contain your transaction mined

Ethereum has an average of 10 ~ 13 seconds of block time, does that means that it is 10 ~ 13 per confirmation?

No, that means an transaction will get a confirmation after 10 - 13 seconds.
2699  Bitcoin / Development & Technical Discussion / Re: Testing encrypted private keys on: May 26, 2019, 04:42:31 PM
If the wallet really encrypted, you won't able to find private key/master private key (xprv) on the raw file.
There are several wallet.dat format, but the one i know use PBKDF2 where PBKDF2 private key used to encrypt master private key & PBKDF2 private key is encrypted with user's password.

There are few tools to brute-force Bitcoin core (such as https://github.com/glv2/bruteforce-wallet), but i've no idea if it's works with broken/corrupt wallet.
Personally i'd recommend professional recovery services (such as https://walletrecoveryservices.com/) in this case.
2700  Other / Beginners & Help / Re: [GUIDE] How To Create Vanity Address (Segwit) on: May 26, 2019, 04:12:38 PM
Are this for x64 windows, correct?
You know how to fix my problem?, got error when to star running
Quote
The program can't start because MSVCP140.dll is missing from your computer.
Try reinstalling the program to fix this problem

Same here.

Looks like you guys didn't install Visual C++ Redistributable Packages / it's corrupted, you can download it at https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads
AFAIK you need to download 2015 or 2012 version.
Pages: « 1 ... 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 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!