5e8266d1de
Add storjscan wallets DB to the satellite. For now this DB is a one to one mapping of the users account to a storjscan wallet that can be used by the account holder to make payments on their Storj account. relates to https://github.com/storj/storj/issues/4347 Change-Id: I6e65b15817b90ceb75641244f9bf173c3b4228a7
13 lines
242 B
Go
13 lines
242 B
Go
// Copyright (C) 2022 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package storjscan
|
|
|
|
// DB is storjscan DB interface.
|
|
//
|
|
// architecture: Database
|
|
type DB interface {
|
|
// Wallets is getter for wallets db.
|
|
Wallets() WalletsDB
|
|
}
|