Bitcoin Forum
June 14, 2024, 10:31:39 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 [393] 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 ... 514 »
7841  Economy / Gambling discussion / Re: Seuntjie' Dice bot programmers mode discussion. on: October 29, 2017, 10:31:50 AM
The problem seems to be that you are always overwriting the "nextbet" value that is set within your "if" statements...

For instance... Look at the highlighted code below...

If balance/64 < previousbet*m1, you set "nextbet = previousbet*m1"... However the code then immediately sets "nextbet = basebet*m1" !!?! Huh
  if lostchance==1 then
      if chance==chance1 then
         if (balance)/64 < previousbet*m1          then
        
         nextbet=previousbet*m1
         print(balance)
         print("------Too high. Turn back 8------")
         end

         nextbet=basebet*m1

      else
         chance=chance1
         nextbet=previousbet*m1
      end
   end

It's the same for all your other IF blocks highlighted in the blue section... You set nextbet inside the innermost IF and then immediately overwrite the nextbet value! Shocked

Perhaps you are missing "else" statements? Huh

Also, I'm not sure if it's by design or you just got it mixed up, but the first block in blue sets to previousbet*mX inside the IF and then overwrite with basebet, but all the other blocks set to basebet*mX inside the IF and then overwrite with previousbet.

I'm not 100% sure what your choice is actually trying to achieve so that might be what you want, buy just thought I'd mention the inconsistency Wink
7842  Bitcoin / Development & Technical Discussion / Re: Checking Bitcoin Address Balance Without download entire blockchain on: October 29, 2017, 10:19:29 AM
The only way to scan the Blockchain to check if addresses have been used in transactions and/or have a current balance is to have a copy of the Blockchain or use an API like blockcypher (the API service provider is then effectively maintaining and indexing the Blockchain for you)

Unless you mean, you've don't care about old blocks as the new addresses should not have been used, so old blocks don't matter. In that case,  maybe you could use an SPV wallet like Electrum and use CLI options (only available on Linux and Mac I believe, CLI doesn't work on windows) to check addresses... The Electrum servers would do the heavy lifting.

As a side note, I believe you can "buy" different levels of service with most API providers if you want to avoid rate limits
7843  Bitcoin / Bitcoin Technical Support / Re: bitcoin "from" address on: October 29, 2017, 09:57:54 AM
I know there is no "from" address when we send bitcoins. However, is there any way to prove when B receives btc, it was sent from a particular party? If A and C both claim they sent btc to B with the same amount and B only receives one payment, how do we identify the sender?
You can definitely see the addresses that the Bitcoins were sent from on the blockchain. The actual owner of the address(es) that sent the payment to B could then simply "sign a message" proving that they control the private key for that address and therefore "own" it.

It's the reason why a lot of airdrops and ICOs etc want signed messages when claiming coins/payments... It proves control/ownership of a given address.
7844  Bitcoin / Bitcoin Technical Support / Re: Need help recovering my bitcoin wallet. on: October 29, 2017, 09:47:04 AM
18 words could be a BIP39 seed. I know that MultiBit HD offered 12, 18 and 24 word seeds.

When you put the seed into Electrum, click the "Options" button and tick the "BIP39 Seed" box.

After that, I would try the default "Derivation Path" first of m/44'/0'/0'... If that doesn't show any transactions, try again but use the MultiBit HD derivation path of m/0'
7845  Bitcoin / Development & Technical Discussion / Re: Whole Bitcoin Core 0.15 blockchain database on Google Drive on: October 28, 2017, 11:35:01 PM
I have tested the archive, so you may download safely.
Just playing devil's advocate here..

That's great that you've "tested the archive"... But how can we "test" you? A "member" with 70 odd posts... Huh

What guarantee do we have that this Blockchain is "legit"... Other than you word?

IMO, by downloading this and using it, you are potentially weakening your node, not strengthening the network.

Install Core, let it sync "naturally".
7846  Bitcoin / Development & Technical Discussion / Re: syncing the blockchain on an offline pc on: October 28, 2017, 11:12:33 PM
Cost? A raspberry Pi 3 is like US$35+ shipping... Then you need peripherals and power... or you end up having to swap cables for keyboards and monitors etc.

And all you ever be able to do with it is "store Bitcoins"... Otherwise you are going to be opening yourself up to attacks.

Plus, you get the added "bonus" of moving transactions backwards and forwards using USB sticks etc...

Compared with a €69 USB stick that you can just plug in and use. Honestly, if you have more than a few hundred $/€/£ worth of coins... A hardware wallet makes sense.

I don't really buy the "but how can a trust it?" argument... How can you trust the OS you put on the pi unless you audit every single line of code yourself? I'd think it would be easier to audit the code on a hardware wallet given the smaller codebase.

Given the level of paranoia within crypto, and the number of teardowns and code reviews of Trezor and Ledger... I'm comfortable they are "safe" from deliberate backdoors... The recent Trezor "exploit" obviously highlighted that this doesn't mean they don't have undiscovered flaws tho
7847  Bitcoin / Bitcoin Technical Support / Re: Can I speed up unconfirmed incoming transaction? on: October 28, 2017, 10:51:42 PM
Have also accelerated this using AntPool... You've included a relatively decent fee of 197 sats/byte, you've just been caught out by the ridiculously large spike in transaction activity...

https://blockchain.info/charts/mempool-count

It's creeping up towards 90,000+ unconfirmed transactions!!?!  Shocked

And as a result, fees have spiked... There is currently 6+ blocks worth of data all paying fees greater than 200 sats/byte: https://btc.com/stats/unconfirmed-tx

Fingers crossed that either ViaBTC or AntPool hit a block soon! Wink
7848  Bitcoin / Bitcoin Technical Support / Re: Problems cannot find a bitcoin wallet that works on: October 28, 2017, 10:19:14 PM
Problems cannot find a bitcoin wallet that works
Before we start with wallet recommendations... Can you please define "works"? Huh

What wallets have you actually tried, and what problems were you having?

...i haven't been able to find a bitcoin wallet that works for me for a long time.
Again... What exactly does this mean? You had a wallet that was working but then started crashing? Or you had a wallet that was "working" but then had some missing features that were critical to your requirements?

It's like saying, "can anyone recommend a vehicle that works?"... Most people are going to recommend cars or trucks... when what you "need/want" is a vehicle that can easily transition from land to water ie. a hovercraft...

Please be more specific with what it is that you actually want from a wallet... Or the issues/errors you are experiencing that make the wallets you currently have unusable.

7849  Bitcoin / Electrum / Re: Split BTC on: October 28, 2017, 08:47:32 PM
How do I do that without using a network transaction and paying more fees?
The short answer is: You can't.

The long answer is that the only way to move coins from one address to another (ie. Moving to a new wallet) is via an "on chain" transaction... To get a transaction confirmed, you're going to have to pay the "miner's fee".

The are ways to mitigate fees (custom fees + accelerators, timing transaction when network load is low etc).

Also note that moving your BTC to a new wallet is not technically required. It is only recommended for security purposes in case the fork client you choose is "evil" and tries to send your seed/private keys to a thief. The theory being that if your BTC has already been moved to a different wallet, they can only steal your fork coins.
7850  Bitcoin / Electrum / Re: Can I remove multisig function from wallet? on: October 28, 2017, 08:18:38 PM
Quote from: Aesopspots link=topic=2302112.msg23611786#msg23611786
In the latest attempt I have:-

Mac wallet type (2FA)
     cosig 1 .......   xpub67z ...etc
     cosig 2 .......new xpub69z...etc
     cosig 3 .......new xpub661...U etc

Where, Linux wallet is:-
     x1/self ............ xpub661 ...etc
     x2/cosigner ....   xpub67z ...etc


I think I need the xpub661 ...F etc shown in the restored Mac wallet using the multisig choice (not 2FA)using xpub from my Linux Ubuntu wallet.
No...

If you've found the right way to get the "xpub67z", (which appears to be part of your fully functional 2FA wallet), then I'd recommend creating a new standard wallet somewhere and immediately moving all your coins to it and then sorting out this mess of MultiSig/2FA that you're caught up in.

Theoretically, as long as you have the properly restored 2FA (with the xpub67z as cosign1) you should be able to create a transaction in Linux and sign it with the appropriate private key on the Mac... As the Mac wallet should have the private keys that match xpub67z!

If it still won't sign the transaction on the Mac, you may need to extract the xprv from the 2FA wallet file (not terribly difficult, but would be better for security if not required) and then create a new wallet using that xprv.
7851  Bitcoin / Electrum / Re: Transfer from Electrum to Coinbase going on 10+hours on: October 28, 2017, 01:04:29 PM
Probably just the 60,000+ unconfirmed transactions in the mempool and the resulting spike in "recommended" transaction fees Undecided

https://blockchain.info/charts/mempool-count
https://btc.com/stats/unconfirmed-tx

No need to panic though... Your transaction will get confirmed eventually... It may just take a lot longer than normal (unless you paid a massive fee, or you can use RBF to bump it up, or you can do a CPFP transaction with a massive fee or you can get your transaction submitted to an accelerator)
7852  Bitcoin / Electrum / Re: Electrum does not recognize seed on: October 28, 2017, 12:56:09 PM
Derivation path is only important for non Electrum (aka "BIP39") seeds...

If you have an Electrum seed... DO NOT select "BIP39 seed" from the Options.

If you have entered your Electrum seed and the "next" button is greyed out, then you have an error in your seed. Triple check all the spelling... One letter wrong will prevent the seed from working.

If you are 100% sure that you've typed in the words exactly as they're written down... Then you've written them down wrong! Undecided

Now triple check the words you've written down against the appropriate word list... Making sure you're using the "American English" spelling for words like "labor" and "color".

Also be wary of "similar" words like "then" and "them"... "rape" and "rare"... "make" and "made"... "walk" and "talk" etc...

As long as you haven't made too many errors in transcription or typing, you sound be able to figure it out.

If you have any knowledge of any addresses that this seed contains, you could also try using the seed recovery script in "btcrecover" (https://github.com/gurnec/btcrecover/blob/master/docs/Seedrecover_Quick_Start_Guide.md)
7853  Bitcoin / Electrum / Re: electrum is safe for the next forks? on: October 28, 2017, 12:27:51 PM
Moving the coins after the fork offers pretty much zero replay protection... In fact, moving them around is what causes you to be open to replay attacks... Especially if you're moving them to addresses you don't control, as you're creating and broadcasting the "signed" transaction needed to be able to replay the transaction on the other network!

Unless you're creating transactions specifically for the purpose of splitting coins using nlocktime or tainted with "coinbase" transaction/already split coins... You're better off just leaving everything alone until the situation has settled down and the details on replay protection and/or how to properly/safely split your coins have been announced
7854  Bitcoin / Electrum / Re: Electrum wallet not connecting on: October 28, 2017, 12:12:05 PM
My antivirus has also blocked it as well.
I just want to know, If its a secure software than why antivirus blocking it to connect online ?
Generally, the "default" setting for a lot of software firewalls is "block everything" unless it's a super popular mainstream app like Outlook or Chrome etc. And some even block those apps as well.

It isn't that the app is "dodgy" or "suspect"... It's just that the firewall isn't configured properly and/or it doesn't recognise the app. You can't expect antivirus app developers to know of every single app ever made! Tongue

Honestly, firewalls implemented by antivirus apps are probably the worst...

7855  Bitcoin / Electrum / Re: Split BTC on: October 28, 2017, 12:06:15 PM
That document was rendered obsolete for BCH (and most likely BTG) after they (BCH Devs) implemented Two-way replay protection for BCH that used a different transaction signing algorithm.

Electrum is unable to create valid BCH transactions... And will most likely be unable to generate valid BTG transactions (given they're looking at changing address prefixes and implementing other changes to provide replay protection).

So, yes... You're probably going to need to get a separate client for each coin... Or use a client that is apparently planning on supporting "everything" (currently BTC, BCH and planned support for BTG, unsure about the 2X fork) like Coinomi etc
7856  Bitcoin / BitcoinJ / Re: Married Wallet Example on: October 28, 2017, 11:56:14 AM
Good luck with getting a response... You've "necro-posted" a thread from May... in 2015!!?! Created by a user that hasn't been active since 2015 Roll Eyes
7857  Bitcoin / Armory / Re: Armory won't go online on: October 28, 2017, 11:52:46 AM
2017-10-28 09:49:57 (INFO) -- ArmoryQt.py:1872 - setSatoshiPaths
2017-10-28 09:49:57 (ERROR) -- BDM.pyc:272 - setSatoshiDir: directory does not exist: C:\Users\Andrew\AppData\Roaming\Bitcoin
2017-10-28 09:49:57 (ERROR) -- SDM.pyc:305 - Bitcoind could not be found in the specified installation:
2017-10-28 09:49:57 (ERROR) -- SDM.pyc:307 -    D:\Bitcoin
2017-10-28 09:49:57 (ERROR) -- SDM.pyc:308 - Bitcoind is being started from:
2017-10-28 09:49:57 (ERROR) -- SDM.pyc:309 -    C:\Program Files\Bitcoin\daemon\bitcoind.exe
2017-10-28 09:49:57 (INFO) -- SDM.pyc:169 - Found bitcoind in the following places:
2017-10-28 09:49:57 (INFO) -- SDM.pyc:171 -    C:\Program Files\Bitcoin\daemon\bitcoind.exe
2017-10-28 09:49:57 (INFO) -- SDM.pyc:173 - Using: C:\Program Files\Bitcoin\daemon\bitcoind.exe
It looks like you've got the Bitcoin "data" and Bitcoin "install" paths confused and set the directory paths in Armory around the wrong way...

It's trying to find the actual Bitcoin Core application installation in "D:\Bitcoin" which I suspect is where you have the Bitcoin DATA directory setup (ie. The blocks and wallet.dat etc)

Whereas, your Bitcoin application appears to be in the default "program files\Bitcoin" location.
7858  Bitcoin / Hardware wallets / Re: Nano s used unconfirmed change from previous tx as input to new send tx on: October 28, 2017, 11:30:43 AM
In Electrum... Simply do the following:
1. "File" - "New/Restore"
2. Give it a new name
3. "Standard wallet"
4. "Use a hardware device"
5. Connect Ledger and start Bitcoin "app"

Electrum will read the Master PUBLIC key only from the ledger and create a "watching only" wallet...

This wallet can be opened and viewed without the Nano being connected. You can even create transactions, you just can't sign them.

If you're worried about keeping this wallet on an online PC... Remember that Electrum allows setting a wallet password and encrypting the wallet file (uses AES256 encryption)... So, even if your password file is stolen, it should be "safeish" if you use a relatively strong password... And without the private keys, at worst you'll lose some privacy.

As for your original "coin control" query, you'd need to check with Ledger support... It might be that the "minimum confirmation" setting only applies to inbound transactions and not change? Huh If true, I'm not sure if that is by design or an oversight/bug... Worth following up though!
7859  Bitcoin / Wallet software / Re: Should I buy 2 nanos? on: October 28, 2017, 11:15:58 AM
Huge amounts? Depends on your definition of huge. A nano s is less than €100 shipped. If you currently have more than €200 worth of crypto, it's probably worth getting a hardware wallet... At that point, you're effectively storing more than the device is worth.

Considering most people spend more than that on iPhones and Samsung Galaxy's and laptops, I don't think it's too much to consider paying for the peace of mind and convenience without sacrificing security.

Not sure a second is mandatory... But it will help with secure recovery should one be lost/stolen/damaged.

Don't even really need a second for storing alt coins... You just need to uninstall/reinstall the different apps. One seed used for all wallet apps, so wallets and Coins aren't "lost" when doing this. Just inaccessible until you reinstall the appropriate app
7860  Bitcoin / Hardware wallets / Re: How to transfer BTC to Ledger as cheap as possible on: October 28, 2017, 10:48:32 AM
Note the very important Step 3. Wink
Step 3. Use ViaBTC to accelerate transaction
This is the reason to use a fee greater than 10 sats/byte. So you can use the ViaBTC accelerator. They're generally mining 10+ blocks a day...

So, yes, there is a risk your transaction will take a while if the network is busy and you have to time it right to get a free slot on the accelerator, but I've never waited more than a couple of hours...

If you don't want to wait and/or are somewhat "risk averse" pay the recommended fees and stop trying to cheap out on fees...

Cheap fees+accelerator+high risk or recommended fees+low risk... Pick one combination for fast confirmation times. Tongue

I know which one I use Wink
Pages: « 1 ... 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 [393] 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 ... 514 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!