Author

Topic: Blockchain.info - Bitcoin Block explorer & Currency Statistics - page 124. (Read 482699 times)

hero member
Activity: 560
Merit: 500
I am the one who knocks
Google Chrome is telling me that the wallet verifier app needs new permissions. What's the story?

I'm seeing this too. Oddly I saw the message first on a totally unrelated site.

That is because it now wants access to EVERY site and not just blockchain.info.  Not sure why, maybe piuk can enlighten us.
legendary
Activity: 1120
Merit: 1164
Google Chrome is telling me that the wallet verifier app needs new permissions. What's the story?

I'm seeing this too. Oddly I saw the message first on a totally unrelated site.
legendary
Activity: 1500
Merit: 1022
I advocate the Zeitgeist Movement & Venus Project.
Google Chrome is telling me that the wallet verifier app needs new permissions. What's the story?
donator
Activity: 674
Merit: 523
Found a bug:

1. Login to web wallet and go to "Send money / Address Book"
2. Add new entry
3. After clicking "Add address", "Quick send" window is changed to this:



4. And "Custom send" is changed to this:





And request: could you make AddressBook popup items also selectable with keyboard cursors (now user can select them only with mouse)?



Thanks!
hero member
Activity: 784
Merit: 1000
0xFB0D8D1534241423
Depends on how many of those input addresses you own...
legendary
Activity: 2072
Merit: 1006
this space intentionally left blank
thanks for the quick help :-D


now someone riddle me this:

https://blockchain.info/address/1goLdrbvhTSbpSaSzKVUTz7fhTuAQe6JZ
this adress I use for a savings plan.

however, i guess the adress was randomly chosen as a "change back" adress for received or sent money.

can someone help me figure out how many BTC this adress has received that were genuinely from another sender?

legendary
Activity: 2072
Merit: 1006
this space intentionally left blank
First time I go to the site today: "Your wallet is locked for the next 239 minutes."
Three hours later: "Your wallet is locked for the next 239 minutes."
An hour later: "Your wallet is locked for the next 239 minutes."


WTF?


Please unlock.
hero member
Activity: 784
Merit: 1000
0xFB0D8D1534241423
I'm currently experiencing a weird bug.  Whenever I try to send money, whether within the wallet or not, I get an error that says "Unknown Error Pushing Transaction".
Me too
sr. member
Activity: 354
Merit: 250
I'm currently experiencing a weird bug.  Whenever I try to send money, whether within the wallet or not, I get an error that says "Unknown Error Pushing Transaction".

In addition, whenever I try to do a "custom" transaction, the confirm screen shows an amount much higher than I specified on the form.  For example, if I try to send 20 BTC it will say "Please confirm you would like to move 109.00 BTC between your own bitcoin addresses".
hero member
Activity: 910
Merit: 1005
My app shows the balance, the transactions, but the little icon on upper-left is red.

Yes I also get the red X. It means the WebDocket isn't connected (so you will need to press the refresh icon in the top right), i'm not sure why this is I need to have a closer look.

The encrypted backup don't ask for my yubikey, only relying on the passphrase? I just want to be sure of that.

Correct, two-factor authentication does not effect how the wallet is encrypted.

--- New Smarter Transaction Push Algorithm ----

Although Eligius should process low fee transactions for My Wallet users there has been some issues getting low fee transaction to propagate properly through the network. Now transactions will be directly relayed to every known mining node. If network propagation is still poor they will be relayed again every 10 minutes. 

If your transaction doesn't confirm within 24 hours you will now receive a notification:

Quote
A transaction made through My Wallet has been removed from our database because it was taking a long time to be included in a block. The transaction can be temporarily viewed at {link} however it will be removed shortly.

In addition the WebSocket server now runs on all 3 servers providing better fault tolerance and a flash fallback has been added for older browsers without native WebSocket support.

Anyone who has been having problems with slow transactions or any errors pushing transactions things should be much improved now.

Quote
void NodeManager::pushTransaction(CTransaction& tx, int maxNodes) {
   
    if (fDebug)
        printf("pushTransaction() %s\n", tx.GetHash().ToString().c_str());
   
    std::set already_pushed;
   
    ReadLock read(nodeManagerMutex);
   
    //100ms lock timeout
    boost::system_time const timeout = boost::get_system_time()+ boost::posix_time::milliseconds(100);

    int nPushed = 0;
    int retryTimes = 5;
    bool done = false;
   
    uint256 hash = tx.GetHash();
       
    for (int retry = 0; retry < retryTimes; ++ retry) {       
        bool allZero = true;

        //Node mangers handle groups of nodes 100 at a time
        for (int ii = 0; ii < nodeManagers.size(); ++ii) {
            NodeManager * manager = nodeManagers[ii];
           
            if (manager->connectedNodes.size() == 0) {
                if (fDebug) printf("Size %lu\n", manager->connectedNodes.size());
                continue;
            }
           
            //If the recent inventory contains the transaction hash then we can finish because the network
            // has already relayed us back the transaction
            if (CNode::recentInventoryContains(hash)) {
                if (fDebug) printf("Breaking because recent inventory contains transaction hash\n");
                return;
            }
           
            allZero = false;
           
            if (fShutdown)
                return;
           
            if (manager->connectedNodesMutex.timed_lock_shared(timeout)) {         
               
                if (fShutdown)
                    return;
               
                //Push to mining pools first
                BOOST_FOREACH(CNode* pnode, manager->connectedNodes) {
                   
                    if (already_pushed.count(pnode->addr.ip) > 0) {
                        continue;
                    }
                               
                    if (ConnectionManager::isMiningPool(pnode->addr.ip)) {
                        already_pushed.insert(pnode->addr.ip);

                        if (pnode->hSocket == INVALID_SOCKET || pnode->fDisconnect)   
                            continue;
                                                   
                        pnode->PushMessage("tx", tx);
                       
                        ++nPushed;
                    }
                   
                    if (nPushed > maxNodes) {
                        if (fDebug) printf("Relayed to sufficient number of nodes (known) %d\n", nPushed);
                        done = true;
                        break;
                    }
                }
               
                manager->connectedNodesMutex.unlock_shared();
            }
        }
       
        if (allZero) {
            return;
        }
               
        if (done) {
            return;
        }
    }
   
    if (nPushed < maxNodes) {
        printf("Didn't relay to enough nodes %d < %d\n", nPushed, maxNodes);
        return;
    }
}
hero member
Activity: 931
Merit: 500
Hey piuk

Does the first version of the Blockchain Wallet for iOS downloaded from the U.S. Apple Store is suposed to still work?

My app shows the balance, the transactions, but the little icon on upper-left is red.

Another question:

The encrypted backup don't ask for my yubikey, only relying on the passphrase? I just want to be sure of that.
hero member
Activity: 910
Merit: 1005
One question - I changed my wallet pass yesterday via the web interface, and yet my Android app seems to work.

A new password dialog should popup when the wallet next syncs e.g. when you open and close the app. Sometimes syncing can be a bit patchy when the web socket server is down.

first time password didn't worked for some reason
"error while decrypting password"

Do you know if they were creating a new wallet or logging into an existing one? I just testing creating a few new wallets and couldn't replicate the issue.

Doesn't that mean that not only the block displays are wrong, but that many of the charts are wrong too?

Thanks for the bug report, this was a display issue only and should be fixed now.

The largest block by value is http://blockchain.info/block-index/127584 (4m BTC)
hero member
Activity: 504
Merit: 502
http://blockchain.info/block-index/238800/000000000000063c9acc532bff7f70247b5a9d65da9616ec8c9eea5583ed3808

Is (possibly) the largest value bitcoin block ever.   Block explorer shows it correctly.

http://blockexplorer.com/block/000000000000063c9acc532bff7f70247b5a9d65da9616ec8c9eea5583ed3808

1.18 million BTC.

Blockchain.info shows 0 total and 0 for every transaction.

Similarly for many recent blocks:

http://blockchain.info/block-index/238665

Doesn't that mean that not only the block displays are wrong, but that many of the charts are wrong too?
legendary
Activity: 1358
Merit: 1003
Ron Gross
BTW, I just sent Bitcoins to some Facebook friends. This is one reply I got:

Quote
claimed them
had to try twice
first time password didn't worked for some reason
"error while decrypting password"
legendary
Activity: 1358
Merit: 1003
Ron Gross
One question - I changed my wallet pass yesterday via the web interface, and yet my Android app seems to work.
How does it work? I expect a password change to disable the Android client's ability to view and certainly spend funds.

Technically, unless I move all my BTC to new addresses, then of course a change of password doesn't offer a lot of security, but at least it should not so easy...
hero member
Activity: 910
Merit: 1005
Actually, I tried to send to Facebook, to a labeled address, and to a raw Bitcoin address, and all three attempts failed.
Some of the failures actually wrote "success", but no money was sent. This repeats consistently for me.

The RMI bridge between bitcoind and the website frontend died for a bit so the UI would not have updated with any new transactions. The transaction may have been pushed out successfully though so check you haven't double sent. If you have double sent the coins can be reclaimed by sweeping the address labelled 'Sent via Facebook' in your archived addresses.

Is the wallet feature offline again? I cannot send transactions unfortunately. The page says 'client disconnected' despite me being logged in.

Everything should be fully functional again now. Apologies for the issues.

 
R-
full member
Activity: 238
Merit: 100
Pasta
donator
Activity: 532
Merit: 501
We have cookies
Jump to: