piuk (OP)
|
|
July 03, 2012, 10:01:01 AM |
|
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 transactionSome 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:
|
|
|
|
2weiX
Legendary
Offline
Activity: 2072
Merit: 1006
this space intentionally left blank
|
|
July 03, 2012, 12:59:53 PM |
|
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
Activity: 9
Merit: 0
|
|
July 03, 2012, 11:24:08 PM |
|
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
|
|
July 03, 2012, 11:37:48 PM |
|
"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)
|
|
July 04, 2012, 02:59:23 PM Last edit: July 04, 2012, 04:49:22 PM by piuk |
|
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: 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 typeAdd ?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-monitorOnly 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
|
|
July 04, 2012, 03:08:59 PM |
|
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)
|
|
July 04, 2012, 04:01:41 PM |
|
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
Activity: 1078
Merit: 1003
|
|
July 04, 2012, 06:36:45 PM |
|
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
Activity: 532
Merit: 501
We have cookies
|
|
July 04, 2012, 08:34:09 PM Last edit: July 05, 2012, 12:13:44 AM by DeepBit |
|
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
|
|
July 05, 2012, 03:03:17 AM |
|
Fixed! It's the time issue, thanks!
|
|
|
|
minimalB
Donator
Hero Member
Offline
Activity: 674
Merit: 523
|
|
July 05, 2012, 09:08:50 AM |
|
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)
|
|
July 05, 2012, 11:53:13 AM |
|
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
Activity: 674
Merit: 523
|
|
July 06, 2012, 03:44:53 PM |
|
Will Do.
Thank you very much for adding this feature request... it works great and is super useful too!
|
|
|
|
sunnankar
Legendary
Offline
Activity: 1031
Merit: 1000
|
|
July 07, 2012, 04:14:53 AM |
|
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.
|
|
|
|
|
hazek
Legendary
Offline
Activity: 1078
Merit: 1003
|
|
July 07, 2012, 10:29:01 PM |
|
Simply amazing work. And I'm also very excited you finally started to charge for something.
|
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
Activity: 1120
Merit: 1164
|
|
July 08, 2012, 12:55:26 AM |
|
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
Activity: 532
Merit: 501
We have cookies
|
|
July 08, 2012, 01:02:00 AM |
|
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
Activity: 2940
Merit: 1333
|
|
July 08, 2012, 06:54:03 AM |
|
|
Just-Dice | ██ ██████████ ██████████████████ ██████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████ ██████████████ ██████ | Play or Invest | ██ ██████████ ██████████████████ ██████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████ ██████████████ ██████ | 1% House Edge |
|
|
|
dooglus
Legendary
Offline
Activity: 2940
Merit: 1333
|
|
July 08, 2012, 06:58:14 AM |
|
There's a typo on http://blockchain.info/wallet/send-anonymously: "taint analysis calculationts"
|
Just-Dice | ██ ██████████ ██████████████████ ██████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████ ██████████████ ██████ | Play or Invest | ██ ██████████ ██████████████████ ██████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████████████████████ ██████████████ ██████ | 1% House Edge |
|
|
|
|