blockchain.info seems to source transaction money from an address not in my wallet

1

Today, I have send a transaction with too low a fee:

https://blockchain.info/tx/84eb8a6c6562a9cfedc0e82c7fbe3355615b8154e376db0a325b4ae4f26180b2

I have retrieved the twelve word pass phrase from my wallet on blockchain.info, and calculated the private keys for the addresses in my wallet. However, the address

1PUBmT2fzVMtNWg58K67knqoz58MmCJ8pn

is not amongst these, and it is also the only address that does not show up in my blockchain.info wallet. Therefore it I can only double-spend part of my first transaction (so to void it). What is happening here?

user63416

Posted 2017-11-02T18:20:21.897

Reputation: 11

these are derived from the pass phrase that I got from blockchain.infouser63416 2017-11-02T18:51:26.177

I'm just curious about how you derive keys from the passphrase.Max Vernon 2017-11-02T18:53:32.143

I'd guess the transaction will probably be processed even if it takes a few days.Highly Irregular 2017-11-02T21:17:45.197

Did you input any private keys to your wallet? If so, those private keys won't be able to be generated from the wallet seed (the twelve word pass phrase).Highly Irregular 2017-11-02T21:21:10.617

1@MaxVernon the bip39 tool on githubuser63416 2017-11-02T21:35:05.920

@HighlyIrregular No, I didn't, I'm quite puzzled by thisuser63416 2017-11-02T21:35:22.063

Answers

1

It is likely that the address in question is a change address. Change addresses are generated using a different key derivation path than your other addresses so you will not see it if you only generated the keys at only one derivation path.

The "normal" key derivation path (a.k.a the "external keychain") is m/44'/0'/0'/i. However keys for change addresses are typically generated on a so called "internal keychain" which has a derivation path of m/44'/0'/1'/i. It is likely that you only looked at keys on the external keychain and not the internal keychain so you did not see this address.

Andrew Chow

Posted 2017-11-02T18:20:21.897

Reputation: 40 910