Skip to content

Commit 5a27be6

Browse files
committed
Added function descriptions
1 parent 2e83ac4 commit 5a27be6

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

pkg/tbtc/chain.go

+2
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,8 @@ type WalletClosedEvent struct {
245245
// BridgeChain defines the subset of the TBTC chain interface that pertains
246246
// specifically to the tBTC Bridge operations.
247247
type BridgeChain interface {
248+
// IsWalletRegistered checks whether the given wallet is registered in the
249+
// ECDSA wallet registry.
248250
IsWalletRegistered(EcdsaWalletID [32]byte) (bool, error)
249251

250252
// GetWallet gets the on-chain data for the given wallet. Returns an error

pkg/tbtc/node.go

+1
Original file line numberDiff line numberDiff line change
@@ -1089,6 +1089,7 @@ func processCoordinationResult(node *node, result *coordinationResult) {
10891089
}
10901090
}
10911091

1092+
// archiveClosedWallets archives closed or terminated wallets.
10921093
func (n *node) archiveClosedWallets() error {
10931094
getClosedWallets := func(walletPublicKeyHashes [][20]byte) (
10941095
closedWallets [][20]byte,

pkg/tbtc/registry.go

+5
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,9 @@ func (wr *walletRegistry) getWalletByPublicKeyHash(
156156
return wallet{}, false
157157
}
158158

159+
// archiveWallet archives the wallet with the given public key hash. The wallet
160+
// data is removed from the wallet cache and the entire wallet storage directory
161+
// is moved to the archive directory.
159162
func (wr *walletRegistry) archiveWallet(
160163
walletPublicKeyHash [20]byte,
161164
) error {
@@ -233,6 +236,8 @@ func (ws *walletStorage) saveSigner(signer *signer) error {
233236
return nil
234237
}
235238

239+
// archiveWallet archives the given wallet data in the underlying persistence
240+
// layer of the walletStorage.
236241
func (ws *walletStorage) archiveWallet(walletStoragePath string) error {
237242
err := ws.persistence.Archive(walletStoragePath)
238243
if err != nil {

0 commit comments

Comments
 (0)