Release v0.3.0

This commit is contained in:
Manu Herrera
2020-11-09 10:05:29 -03:00
parent 4e9aa7a3c5
commit 8107c4478b
1265 changed files with 440488 additions and 107809 deletions

21
vendor/github.com/muun/libwallet/init.go generated vendored Normal file
View File

@@ -0,0 +1,21 @@
package libwallet
// Listener is an interface implemented by the apps to receive notifications
// of data changes from the libwallet code. Each change is reported with a
// string tag identifying the type of change.
type Listener interface {
OnDataChanged(tag string)
}
// Config defines the global libwallet configuration.
type Config struct {
DataDir string
Listener Listener
}
var cfg *Config
// Init configures the libwallet
func Init(c *Config) {
cfg = c
}