Bitcoin Forum
May 24, 2024, 04:19:17 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 104 105 106 107 108 109 110 ... 514 »
1181  Bitcoin / Bitcoin Technical Support / Re: Damaged .dat file... Am I screwed ? on: February 28, 2021, 11:48:23 PM
Well, given the recovered files were corrupted... then I guess the OP got unlucky.  Undecided

Something was obviously written to disk over the old (deleted) wallet.dat data... regardless of whether or not it was the Service Pack... the point was that the computer was obviously being used and data was being written to disk. That increases the risk of data corruption.

Like I said, there is a chance that they might be able to find an intact key by doing a raw byte search on the disk... but I wouldn't be terribly confident of a successful outcome. No harm in trying. As Jet Cash said tho... make an image of the drive first and search the image.
1182  Alternate cryptocurrencies / Altcoin Discussion / Re: Windows Cross-Compiling of a Bitcoin 0.21 Fork on: February 28, 2021, 11:39:58 PM
The instructions in build-windows.md seem to work OK... I didn't need to do any "scouring" Tongue it was basically as simple as setup WSL, install Ubuntu 18.04 in WSL, copy/paste the commands from the readme to the terminal.

Additionally, there are notes on how to build using Visual Studio here: https://github.com/bitcoin/bitcoin/blob/master/build_msvc/README.md

I just didn't do it that way because I don't have VS installed Tongue

1183  Bitcoin / Bitcoin Technical Support / Re: pywallet install help on: February 28, 2021, 11:23:32 PM
                         bsddb.db.DBNoSuchFileError: <2, 'No such file or directory -- C:\\Users\\Catherine\\Appdata\\Roaming\\Bitcoin\\__db.001: No such file or directory'>
As mentioned earlier... use the command that has the --datadir=. option in it if you get "no such file or directory __db.001"

Code:
C:\Python27\python.exe pywallet.py --dumpwallet --datadir=. --wallet=C:\Users\Catherine\Downloads\pywallet\recovered_wallet_1511377727.dat
1184  Bitcoin / Development & Technical Discussion / Re: How about placing miners into groups where each group is similar to a bank? on: February 27, 2021, 08:32:06 PM
May I ask what you think would actually be achieved by doing this? Huh

Are you thinking that by having multiple blockchains, we're going to have multiple blocks being solved on multiple chains and therefore be able to have more transactions? Huh If so, your reasoning is flawed... as how do you deal with "intergroup" transactions? You're going to be doubling up transactions... ie. PersonA-Group1 -> PersonB-Group2... you somehow need a transaction on Group1 blockchain AND on Group2 blockchain. What happens if a Group does rouge? What happens to all the users in that group? Huh Can users choose which group they want to be in?

How do you deal with HD wallets and address creation to ensure that GroupX wallet private keys/addresses are only used on GroupX blockchain? Huh Are you going to only use miner issued private keys/addresses? Huh

Additionally, you make it impossible for users to actually see for themselves the data from the other blockchains... they have no way of knowing if something is accurate with trusting their particular group of miners etc.


Honestly, this sounds like a terrible idea. All the downsides of centralisation, with none of the benefits of Bitcoin Undecided
1185  Bitcoin / Bitcoin Technical Support / Re: pywallet install help on: February 27, 2021, 08:23:55 PM
where is your pywallet.py file? Does the folder "C:\Users\Catherine\Downloads\pywallet\" exist?

If it does exist, does your command prompt say:
Code:
C:\Users\Catherine\Downloads\pywallet\>
1186  Bitcoin / Bitcoin Technical Support / Re: Sync time seems excessive on: February 27, 2021, 08:16:12 PM
The files are being stored on a dedicated SATA drive.
This is likely your bottleneck... is that an HDD or an SSD of some description? If it is an HDD, that is definitely your bottleneck... the initial block download involves a LOT of disk I/O... unless you use a sizeable dbcache value, then your storage device will be working overtime... and HDD's are sloooooooooooow when compared to SSD storage.
1187  Bitcoin / Bitcoin Technical Support / Re: Prevent Bitcoin connect to tor servers on: February 27, 2021, 07:52:16 PM
No. Unless you are using the "onlynet=onion" option which makes all outbound connections via Tor... but that still doesn't affect inbound connections.

So, the nodes should still be able to sync quite happily over ipv4 (and ipv6) connections... regardless of whether or not the node has been able to bind to 18334 for tor. If you're not interesting in tor, just ignore the error.
1188  Bitcoin / Bitcoin Technical Support / Re: pywallet install help on: February 27, 2021, 07:45:44 PM
The easiest way is to just leave off the --passphrase option... if you don't include it, and the wallet.dat has a passphrase, it won't be able to show the private keys Wink

For instance:
Code:
C:\Python27\python.exe pywallet.py --dumpwallet --wallet=C:\Users\Catherine\Downloads\pywallet\recovered_wallet_1511377727.dat


Also, if you get a "No such file or directory" error about there not being a __db.001 file... you will need a --datadir, so the command would be:
Code:
C:\Python27\python.exe pywallet.py --dumpwallet --datadir=. --wallet=C:\Users\Catherine\Downloads\pywallet\recovered_wallet_1511377727.dat 

Once you're ready to output with the private keys displayed, just remember to add the --passphrase option back
1189  Bitcoin / Electrum / Re: Electrum 4.0.9 can't send funds... on: February 27, 2021, 07:40:09 PM
It has nothing to do with any encryption. The encryption of the wallet file has not changed... it is simply the "seed_version" value being stored in the wallet file...

Electrum uses the "seed_version" value as a "wallet version" value and it is incremented whenever modifications are made that alters the wallet file format in some manner. This is to prevent new additions and/or modifications to the wallet file structure causing unexpected errors should an "upgraded" wallet be attempted to be opened in an older version of Electrum that is not expecting them.

So, when wallet file format changes are made, the "version" is incremented... and the wallet is upgraded the first time the wallet file is opened using a newer version. At some point between 4.0.5 and 4.0.9, the version was incremented from 32 to 33... hence why, after opening the wallet file with 4.0.9, the wallet file can no longer be opened in 4.0.5.

In the future, should you wish to maintain the ability to "rollback" to the previous version in case an update causes issues... you should backup your wallet file before you update Electrum. This will mean you have a copy of the wallet file with the "earlier" version.


NOTE: not all updates actually modify the version... the wallet version was actually last updated in version 4.0.8...
1190  Bitcoin / Bitcoin Technical Support / Re: pywallet install help on: February 27, 2021, 07:18:21 PM
Oh... silly me! I forgot to include the "Python.exe" part of the commands!  Embarrassed Roll Eyes

NOTE: You need to be in the directory where "pywallet.py" is located for those commands to run properly... given the previous history... after opening "cmd", you should use the following command first:
Code:
cd C:\Users\Catherine\Downloads\pywallet\

Then you can try the following:

To dump out the wallet INCLUDING your private keys to the screen ONLY:
Code:
C:\Python27\python.exe pywallet.py --dumpwallet --wallet=C:\Users\Catherine\Downloads\pywallet\recovered_wallet_1511377727.dat --passphrase="YOUR-PASS-PHRASE"

To dump out the wallet INCLUDING your private keys to a text file:
Code:
C:\Python27\python.exe pywallet.py --dumpwallet --wallet=C:\Users\Catherine\Downloads\pywallet\recovered_wallet_1511377727.dat --passphrase="YOUR-PASS-PHRASE" > C:\Users\Catherine\Dowloads\pywallet\walletDump-withKeys.txt

This is assuming that the recovered_wallet_1511377727.dat still exists... and you remember what the passphrase was when you created it when doing the pywallet recovery.
1191  Bitcoin / Bitcoin Technical Support / Re: Prevent Bitcoin connect to tor servers on: February 27, 2021, 07:11:31 PM
I'm not interested at using Tor connections right now.
Then it probably isn't an issue... the 2nd instance cannot bind to that port as obviously it is already in used by the 1st instance of Bitcoin Core...

It shouldn't be preventing the 2 instances from talking to other nodes (or each other), so you can just ignore the error.
1192  Bitcoin / Wallet software / Re: I have a multibit wallet and I don't see any funds on: February 27, 2021, 07:00:39 PM
What happens if you lookup the "1xxxxx" address that is on the paper wallet using one or more of the following block explorers?

https://www.blockchair.com/
https://www.blockstream.info/
https://www.blockchain.com/
https://www.btc.com/
https://live.blockcypher.com/btc/

Do you see some transaction history? Huh Does it indicate that there is a positive "final balance" or does it show as zero? Huh The transaction history is often the important clue (even with a zero balance), as it means that the address was in fact "used" at some point...

If you have transaction history, but zero balance, it means the coins were spent at some point.
If you have no transaction history, it means the paper wallet was never funded and can be "ignored".


You also really need to check which version of MultiBit you were using... was it MultiBit Classic:



or was it MultiBit HD:



The method to recover coins from each is slightly different.
1193  Bitcoin / Hardware wallets / Re: hardware wallet on: February 27, 2021, 10:22:41 AM
Maybe a manual override for when you forgot your password for access which can only be used if the number of attempts to enter the password reached the limit.
Honestly... that sounds like a terrible idea and something that could be exploited to hack your wallet and steal your funds if the device was stolen... or someone decided that a $5 wrench might help persuade you to unlock your wallet.

The idea of the "kill switch" (ie. wipe the device) after exceeding the PIN/Password limit is to prevent someone attempting to bruteforce a device that they have "found" (stolen) by endlessly trying difference PINs/Passwords. Additionally, if the device isn't wiped, you leave yourself open to the possibility of data extraction (similar to the Trezor memory exploit)... even if the number of tries has been exceeded.

The "manual override" already exists... it's your 12/24 word recovery phrase! Wink If you exceed the PIN/Password limit... you simply restore from your recovery phrase and away you go.
1194  Bitcoin / Electrum / Re: The Miners fee should be shown in Fiat currency value on: February 27, 2021, 10:10:00 AM
Just as an update to this... https://github.com/spesmilo/electrum/pull/6968 has been merged into "master"... so soon you will be able to see miner's fees in fiat on the appropriate dialogs Wink

Thanks to the "real" Electrum dev's for their review and patience.
1195  Bitcoin / Electrum / Re: Electrum appImage console on: February 27, 2021, 07:51:12 AM
Can I ask why you need/want to be able to import modules on the Electrum console? Huh It's really not the place to be writing raw python code! Shocked

If you need to be creating a Python script, go ahead and create a Python script and then run it using Python... Tongue
1196  Bitcoin / Electrum / Re: Electrum 4.0.9 can't send funds... on: February 27, 2021, 07:47:10 AM
Older version was taken out when the new version installed. I didn't see a download for past versions on electrum.org....unless I missed it.
You did miss it... Tongue


Clicking that link will take you here: https://download.electrum.org/

It has every version released since version 1.8! Shocked

However, I would strongly recommend you don't blindly download old versions unless you are 100% sure of what you're doing... and you have a very good reason for rolling back to a previous version.

Honestly, it sounds like you have 8 inputs and would be creating a fairly "large" transaction from a "data size" point of view. Given how ridiculously busy the network is, and how high fees are currently, it wouldn't surprise me that the default fee estimation in Electrum is struggling with calculating a decent fee.  There are countless users on these forums at the moment with "stuck transactions"... there are over 100k unconfirmed transactions at the moment Undecided

Look at https://mempool.space/ and https://jochen-hoenicke.de/queue/#BTC,24h and https://bitcoiner.live/?confidence=0.9 to get a feel for the best rates to use for fees and choose one appropriate to your requirements (ie. higher for more chance of getting fast confirmation... lower if you don't care about confirmation time and want to send cheaply)
1197  Bitcoin / Electrum / Re: funds on electrum on: February 27, 2021, 07:36:20 AM
One question, how can I convert BTH to BTC, as I should make a payment in BTC thank you very much
Again... it's NOT BTH... it's BCH... (or ETH, but there is no way ETH would show up in Electron Cash)... Please make sure that you're using the correct abbreviations to avoid confusion.

As for how to get from BCH to BTC... you'll need to send your BCH to an Exchange (Poloniex, BitMex, Binance etc)... and convert it to BTC and then send the coins to wherever you need. BUT... I would advise that you triple check the fees involved when using exchanges... a lot of them have fixed withdrawal fees which are simply ridiculous with today's value of BTC... (ie. 0.00050000 BTC withdrawal fees that's ~US$25!!?! Shocked Shocked Shocked)

Other options are the "instaswap" services like changelly and shapeshift etc... again, be wary of fees.
1198  Bitcoin / Electrum / Re: Will NanoS / LedgerLive Trades history show in Electrum once I enter my 24 words on: February 27, 2021, 07:28:45 AM
I didnt realise that Electrum would only show BTC I thought it did all the BIP standards of  (BIP32/BIP39/BIP44)?
Electrum is a BTC only wallet... so it can only show BTC.

Also... the BIP's are "Bitcoin Improvement Proposals"... ergo BIP32, BIP39 and BIP44 are all actually Bitcoin orientated... that fact that some Altcoin's choose to implement/mimic similar functionality does not mean that a "BIPxx compatible" wallet is "multicurrency".

If you need to be able to see Altcoin activity, you'll either need to track down the forked versions of Electrum that a lot of Altcoin devs/projects created specificially for their project... or use a "multicoin" wallet like Coinomi...
1199  Bitcoin / Armory / Re: ArmoryDB always parsing blocks again on: February 27, 2021, 06:38:36 AM
Can you post the armorylog.txt logfile? Huh

Also, what OS are you using... and what are the exact versions of Armory and Bitcoin Core you are you using? I would recommend:

Bitcoin Core: 0.21.0
Armory: 0.96.5 (get this from here: https://btcarmory.com/ (DO NOT USE bitcoinarmory.com... it's old and outdated!)
1200  Bitcoin / Armory / Re: Armory Not Scanning Transactions (Mac 10.15.7, Armory 0.96.5) on: February 27, 2021, 06:34:39 AM
The fact that it goes a bit haywire when you're trying to restore the wallet indicates that there might be something unusual about one of the transactions involving your wallet that is causing Armory issues... not sure how you'd go about debugging that though, as nothing obvious showing up in the debug logs.

Possibly caused by corrupt data in your Bitcoin Core block data... maybe try shutting down Armory and Bitcoin Core... and restarting Bitcoin Core using the -reindex option. That should force it to recheck it's data and redownload anything that has been corrupted.

After the reindex is complete... start Armory, "Rebuild and Rescan Databases" and then restart Armory.
Pages: « 1 ... 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 104 105 106 107 108 109 110 ... 514 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!