Bitcoin Forum
April 16, 2024, 07:07:47 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
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 ... 173 »
  Print  
Author Topic: Blockchain.info - Bitcoin Block explorer & Currency Statistics  (Read 482336 times)
piuk (OP)
Hero Member
*****
Offline Offline

Activity: 910
Merit: 1005



View Profile WWW
July 03, 2012, 10:01:01 AM
 #1041

In wallet when you uncheck Email Notifications you get the following:

"Updating Notifications Type: Invalid value"

This error should be fixed now, thank you for the report.

I am getting an "invalid to address" error whenever I try to send bitcoins to a new address.  Addresses that have received bitcoins go through fine.

I have tried using addresses from different wallet clients and different computers and also one sent to me from someone else but I still get the same result.

I posted a reply to your other post. Where are you copying the addresses from?

Unknown error pushing transaction

Some User's have been getting the error "Unknown error pushing transaction". This means the transaction was broadcast but was not relayed back by any other nodes. It normally happens when you try and spend an unconfirmed transaction which hasn't propagated well throughout out the network (e.g. has incorrect fees, double spend etc). Confirmed outputs will now be prioritised over unconfirmed outputs (previously outputs were picked in ascending time order). Also transactions with poor propagation will be re-broadcast with greater frequency.

You can check if a transaction has not propagated well by clicking the red unconfirmed button:



And looking at the mining nodes which have received it:


1713294467
Hero Member
*
Offline Offline

Posts: 1713294467

View Profile Personal Message (Offline)

Ignore
1713294467
Reply with quote  #2

1713294467
Report to moderator
1713294467
Hero Member
*
Offline Offline

Posts: 1713294467

View Profile Personal Message (Offline)

Ignore
1713294467
Reply with quote  #2

1713294467
Report to moderator
1713294467
Hero Member
*
Offline Offline

Posts: 1713294467

View Profile Personal Message (Offline)

Ignore
1713294467
Reply with quote  #2

1713294467
Report to moderator
Every time a block is mined, a certain amount of BTC (called the subsidy) is created out of thin air and given to the miner. The subsidy halves every four years and will reach 0 in about 130 years.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713294467
Hero Member
*
Offline Offline

Posts: 1713294467

View Profile Personal Message (Offline)

Ignore
1713294467
Reply with quote  #2

1713294467
Report to moderator
2weiX
Legendary
*
Offline Offline

Activity: 2058
Merit: 1005

this space intentionally left blank


View Profile
July 03, 2012, 12:59:53 PM
 #1042

when sweeping keys, could it be possible to designate a target adress?
also, are the keys being swept in danger of being changeback adresses for those transactions?
dcc4e
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
July 03, 2012, 11:24:08 PM
 #1043

Quote
Where are you copying the addresses from?

I copied the addresses from a number of places, such as the Bitcoin-Qt client, bitaddress.org, a merchant.  I tried doing this on two different computers.  I even tried manually copying addresses.  When copying from the Bitcoin-Qt client only the addresses that have previously received coins would be considered valid.

I tried again today and everything is working fine.  I tried it with the same addresses that were giving me problems and also some new ones.
nimda
Hero Member
*****
Offline Offline

Activity: 784
Merit: 1000


0xFB0D8D1534241423


View Profile
July 03, 2012, 11:37:48 PM
 #1044

"Estimated BTC Transacted" fascinates me. Sometimes it's right, other times wrong. But in transactions such as a recent interest payment I received, it has no idea. Neither output has been spent, so either could be to a change address. It guessed the lower number, and was wrong. Is it just flipping a coin?
piuk (OP)
Hero Member
*****
Offline Offline

Activity: 910
Merit: 1005



View Profile WWW
July 04, 2012, 02:59:23 PM
Last edit: July 04, 2012, 04:49:22 PM by piuk
 #1045

when sweeping keys, could it be possible to designate a target adress?
also, are the keys being swept in danger of being changeback adresses for those transactions?

Sure can do. There should be no change from a sweep transaction because all available outputs are used.

I tried again today and everything is working fine.  I tried it with the same addresses that were giving me problems and also some new ones.

Apologies this was an error with the web interface not an issue with how you were copying the address:

"Estimated BTC Transacted" fascinates me. Sometimes it's right, other times wrong. But in transactions such as a recent interest payment I received, it has no idea. Neither output has been spent, so either could be to a change address. It guessed the lower number, and was wrong. Is it just flipping a coin?

Let me know the transaction hash and what should of have been the correct estimate and I will try to improve the estimation function. It's pretty basic:

Quote
public long getEstimatedBTCSent() {
        long total = 0;

        if (isGeneratedBlockReward())
            return 0;

        List<DBOutput> filtered_outputs = getOutsNotFromInputs();

        //If a transaction has more than two inputs then we take the largest output that couldn't be filled with one input
        if (getIn().size() >= 2 && filtered_outputs.size() == 2) {
            return Math.max(filtered_outputs.get(0).getValue(), filtered_outputs.get(1).getValue());
        //If a transaction has one input and two outputs we take the smallest output
        } else if (getIn().size() == 1 && filtered_outputs.size() == 2) {
            total = Math.min(filtered_outputs.get(0).getValue(), filtered_outputs.get(1).getValue());
        } else {
            for (Output output : filtered_outputs) {
                total += output.getValue();
            }
        }

        return total;
    }

Testers needed for Anonymous Transaction type

Add ?enable_anonymous=true to your wallet login url e.g. https://blockchain.info/wallet/piuk?enable_anonymous=true and choose the "Anonymous" transaction type on the send money tab. Please test with amounts between 0.5 - 2 BTC . No large transactions yet.

Each anonymous transaction creates an entry in a forwarding (routing table). This routing is valid for only one transaction after 6 confirmations the transaction is permanently removed from the database. While testing it is possible to view the current routings at.

http://server2.blockchain.info/forwarding-monitor

Only a transaction to the original routing address will be shown in your transactions lists, no transaction will be shown to the final destination address. Up to 50,000 outputs are scanned for each routing input used to ensure it meets the required minimum taint (Default 0%) for the final destination address.


finway
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500


View Profile
July 04, 2012, 03:08:59 PM
 #1046

piuk,

    I've changed my Two-factor Auth method from email to Google Authenticator,
but the code that GA generated doesn't work, i'm locked.

    Can you check if there's anything wrong?  I'm sure i scan the right Google Authenticator QRCode.

                                          finway

piuk (OP)
Hero Member
*****
Offline Offline

Activity: 910
Merit: 1005



View Profile WWW
July 04, 2012, 04:01:41 PM
 #1047

piuk,

    I've changed my Two-factor Auth method from email to Google Authenticator,
but the code that GA generated doesn't work, i'm locked.

    Can you check if there's anything wrong?  I'm sure i scan the right Google Authenticator QRCode.

                                          finway

As far am i'm aware google auth should be working fine. Could you check that the time on your phone is not too out of sync with the blockchain.info server time (http://server3.blockchain.info/time).

There is a secret phrase set on your account so please use https://blockchain.info/wallet/reset-two-factor to have two-factor authentication removed.


hazek
Legendary
*
Offline Offline

Activity: 1078
Merit: 1002


View Profile
July 04, 2012, 06:36:45 PM
 #1048


Testers needed for Anonymous Transaction type

Add ?enable_anonymous=true to your wallet login url e.g. https://blockchain.info/wallet/piuk?enable_anonymous=true and choose the "Anonymous" transaction type on the send money tab.

I did this, I'm logged into my wallet and my url now shows: https://blockchain.info/wallet/walletID?enable_anonymous=true but I don't see "Anonymous" transaction type in the send money tab.

My personality type: INTJ - please forgive my weaknesses (Not naturally in tune with others feelings; may be insensitive at times, tend to respond to conflict with logic and reason, tend to believe I'm always right)

If however you enjoyed my post: 15j781DjuJeVsZgYbDVt2NZsGrWKRWFHpp
DeepBit
Donator
Hero Member
*
Offline Offline

Activity: 532
Merit: 501


We have cookies


View Profile WWW
July 04, 2012, 08:34:09 PM
Last edit: July 05, 2012, 12:13:44 AM by DeepBit
 #1049

If you like this site you can switch your DeepBit account from using Bitcoin Block Explorer to Blockchain.info at the advanced settings page.

Welcome to my bitcoin mining pool: https://deepbit.net ~ 3600 GH/s, Both payment schemes, instant payout, no invalid blocks !
Coming soon: ICBIT Trading platform
finway
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500


View Profile
July 05, 2012, 03:03:17 AM
 #1050

As far am i'm aware google auth should be working fine. Could you check that the time on your phone is not too out of sync with the blockchain.info server time (http://server3.blockchain.info/time).

There is a secret phrase set on your account so please use https://blockchain.info/wallet/reset-two-factor to have two-factor authentication removed.
Fixed! It's the time issue, thanks!

minimalB
Donator
Hero Member
*
Offline Offline

Activity: 674
Merit: 522


View Profile
July 05, 2012, 09:08:50 AM
 #1051

My browser gets quite often disconnected from blockchain server. If I refresh the page, i am kicked out of the wallet and i have to enter password and GA code again.

Could you add a custom refresh icon (for example near the logout icon). That would be great!
piuk (OP)
Hero Member
*****
Offline Offline

Activity: 910
Merit: 1005



View Profile WWW
July 05, 2012, 11:53:13 AM
 #1052

I did this, I'm logged into my wallet and my url now shows: https://blockchain.info/wallet/walletID?enable_anonymous=true but I don't see "Anonymous" transaction type in the send money tab.

The HTML5 offline caches very aggressively and often new changes won't show up. Please try clearing your browsers cache.

Thank you to the testers so far, a number of bugs have been fixed. If any transactions did not forward properly or if anyone feels like they have been short changed please let me know and I will refund you.

Fixed! It's the time issue, thanks!

Yeah I thought it would be that. I'm going to increase the time window GAuth codes are valid for to allow more leeway for time differences.

If you like this site you can switch your DeepBit account from using Bitcoin Block Explorer to Blockchain.info at the advanced settings page.

Thanks Deepbit/Tycho.

My browser gets quite often disconnected from blockchain server. If I refresh the page, i am kicked out of the wallet and i have to enter password and GA code again.

Could you add a custom refresh icon (for example near the logout icon). That would be great!


Will Do.

minimalB
Donator
Hero Member
*
Offline Offline

Activity: 674
Merit: 522


View Profile
July 06, 2012, 03:44:53 PM
 #1053

Will Do.

Thank you very much for adding this feature request... it works great and is super useful too!
sunnankar
Legendary
*
Offline Offline

Activity: 1031
Merit: 1000



View Profile WWW
July 07, 2012, 04:14:53 AM
 #1054

Thank you to the testers so far, a number of bugs have been fixed. If any transactions did not forward properly or if anyone feels like they have been short changed please let me know and I will refund you.

I think you should change the interface to reduce the math workload for users.

Currently the user inputs the total amount of bitcoins to send and the amount the address receives and fees are calculated.

Instead the user interface input should be the amount the other address will receive then calculated the fees and total amount of bitcoins sent.

piuk (OP)
Hero Member
*****
Offline Offline

Activity: 910
Merit: 1005



View Profile WWW
July 07, 2012, 09:49:31 PM
 #1055

Mixing Service Now Live

https://blockchain.info/wallet/send-anonymously

Also https://blockchain.info/wallet/ has had a bit of a make over.

Next for the wallet service: the Android app is going to get some love, and the final push to finish split key addresses and electrum fallback.

hazek
Legendary
*
Offline Offline

Activity: 1078
Merit: 1002


View Profile
July 07, 2012, 10:29:01 PM
 #1056

Simply amazing work.  Cool And I'm also very excited you finally started to charge for something.  Grin

My personality type: INTJ - please forgive my weaknesses (Not naturally in tune with others feelings; may be insensitive at times, tend to respond to conflict with logic and reason, tend to believe I'm always right)

If however you enjoyed my post: 15j781DjuJeVsZgYbDVt2NZsGrWKRWFHpp
Peter Todd
Legendary
*
Offline Offline

Activity: 1120
Merit: 1149


View Profile
July 08, 2012, 12:55:26 AM
 #1057

If you're charging a 1.5% fee for this anonymous send service, how are you going to withdraw your fees? It strikes me that it'd be very easy for you to create a block of coins tainted by every coin sent through the service, which itself, should it get into wider pools of coins like instawallet, would create tainted blocks of coins that would be quite hard to send through the mixer again... Limited by the 250 depth limit, but still. Similarly anyone can use the mixer a few times to create their own "ultra-tainted" coins, aided by the fact that the mixer will always give you coins that haven't been tainted by the total sum of the taint you already possess. This doesn't even need to be very expensive if you taint a small amount of coins each time, so the 1.5% fee isn't very high, and use them to taint a much lager amount which you then send to something like instawallet.

Given how thoroughly tainted the future could be it also occurs to me that what you will eventually see is miners selling their untainted coins to the mixer, which then leads to pools inserting transactions with unusually high fees, which then leads to pools conspiring to reverse said transactions. Not to mention the question of are mining payouts tainted by the coins which lead to their fees?

Note: for all the bad connotations of the word taint, imagine how much longer and convoluted the above message would be if we had decided to call it coins' provenance.

DeepBit
Donator
Hero Member
*
Offline Offline

Activity: 532
Merit: 501


We have cookies


View Profile WWW
July 08, 2012, 01:02:00 AM
 #1058

Next for the wallet service
Is creating multisigs still not available ?

Welcome to my bitcoin mining pool: https://deepbit.net ~ 3600 GH/s, Both payment schemes, instant payout, no invalid blocks !
Coming soon: ICBIT Trading platform
dooglus
Legendary
*
Offline Offline

Activity: 2940
Merit: 1330



View Profile
July 08, 2012, 06:54:03 AM
 #1059

This graph is broken:

http://blockchain.info/charts/balance?address=1VayNert3x1KzbpzMGt2qdqrAThiRovi8

Just-Dice                 ██             
          ██████████         
      ██████████████████     
  ██████████████████████████ 
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
    ██████████████████████   
        ██████████████       
            ██████           
   Play or Invest                 ██             
          ██████████         
      ██████████████████     
  ██████████████████████████ 
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
    ██████████████████████   
        ██████████████       
            ██████           
   1% House Edge
dooglus
Legendary
*
Offline Offline

Activity: 2940
Merit: 1330



View Profile
July 08, 2012, 06:58:14 AM
 #1060

There's a typo on http://blockchain.info/wallet/send-anonymously:

"taint analysis calculationts"

Just-Dice                 ██             
          ██████████         
      ██████████████████     
  ██████████████████████████ 
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
    ██████████████████████   
        ██████████████       
            ██████           
   Play or Invest                 ██             
          ██████████         
      ██████████████████     
  ██████████████████████████ 
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████████
    ██████████████████████   
        ██████████████       
            ██████           
   1% House Edge
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 ... 173 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!