forked from tw-bc-group/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollback.go
40 lines (33 loc) · 1.24 KB
/
rollback.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package node
import (
"github.com/hyperledger/fabric/core/ledger/kvledger"
"github.com/hyperledger/fabric/peer/common"
"github.com/pkg/errors"
"github.com/spf13/cobra"
)
var (
channelID string
blockNumber uint64
)
func rollbackCmd() *cobra.Command {
nodeRollbackCmd.ResetFlags()
flags := nodeRollbackCmd.Flags()
flags.StringVarP(&channelID, "channelID", "c", common.UndefinedParamValue, "Channel to rollback.")
flags.Uint64VarP(&blockNumber, "blockNumber", "b", 0, "Block number to which the channel needs to be rolled back to.")
return nodeRollbackCmd
}
var nodeRollbackCmd = &cobra.Command{
Use: "rollback",
Short: "Rolls back a channel.",
Long: `Rolls back a channel to a specified block number. When the command is executed, the peer must be offline. When the peer starts after the rollback, it will receive blocks, which got removed during the rollback, from an orderer or another peer to rebuild the block store and state database.`,
RunE: func(cmd *cobra.Command, args []string) error {
if channelID == common.UndefinedParamValue {
return errors.New("Must supply channel ID")
}
return kvledger.RollbackKVLedger(channelID, blockNumber)
},
}