mirror of
https://github.com/LBRYFoundation/lbcd.git
synced 2025-08-23 17:47:24 +00:00
This commit adds a basic infrastructure to allow upgrades to happen to btcd as needed. This paves the way for the upcoming data path changes to be automatically updated for the user as needed and also ensures any future changes that might require upgrades already have an established way of performing the needed upgrades.
10 lines
267 B
Go
10 lines
267 B
Go
// Copyright (c) 2013 Conformal Systems LLC.
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
// doUpgrades performs upgrades to btcd as new versions require it.
|
|
func doUpgrades() error {
|
|
return nil
|
|
}
|