accounts: no-op change to reduce diff

This commit is contained in:
Martin Holst Swende 2024-11-14 09:15:00 +01:00
parent afa22478dd
commit bc201f7c93
No known key found for this signature in database
GPG key ID: 683B438C05A5DDF0

View file

@ -29,6 +29,11 @@ import (
// the manager will buffer in its channel.
const managerSubBufferSize = 50
// Config is a legacy struct which is not used
type Config struct {
InsecureUnlockAllowed bool // Unused legacy-parameter
}
// newBackendEvent lets the manager know it should
// track the given backend for wallet updates.
type newBackendEvent struct {
@ -52,11 +57,6 @@ type Manager struct {
lock sync.RWMutex
}
// Config is a legacy struct which is not used
type Config struct {
InsecureUnlockAllowed bool // Unused legacy-parameter
}
// NewManager creates a generic account manager to sign transaction via various
// supported backends.
func NewManager(config *Config, backends ...Backend) *Manager {