Skip to content

Commit

Permalink
Renamed variable
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaszslabon committed Jun 10, 2024
1 parent cddb143 commit 7407212
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/tbtc/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ func (ws *walletStorage) saveSigner(signer *signer) error {

// archiveWallet archives the given wallet data in the underlying persistence
// layer of the walletStorage.
func (ws *walletStorage) archiveWallet(walletStoragePath string) error {
err := ws.persistence.Archive(walletStoragePath)
func (ws *walletStorage) archiveWallet(walletStorageKey string) error {
err := ws.persistence.Archive(walletStorageKey)
if err != nil {
return fmt.Errorf(
"could not archive wallet storage using the "+
Expand Down

0 comments on commit 7407212

Please sign in to comment.