wallet: remove the need to set the birthday for bitcoind chain clients

Due to the previous commit allowing us to specify the birthday of the
wallet at the time of the BitcoindClient's creation, this is now
unnecessary.
This commit is contained in:
Wilmer Paulino 2018-06-21 17:48:27 -07:00
parent 8357e86a4d
commit bbb5a6c058

View file

@ -173,8 +173,6 @@ func (w *Wallet) SynchronizeRPC(chainClient chain.Interface) {
switch cc := chainClient.(type) {
case *chain.NeutrinoClient:
cc.SetStartTime(w.Manager.Birthday())
case *chain.BitcoindClient:
cc.SetStartTime(w.Manager.Birthday())
}
w.chainClientLock.Unlock()