mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 18:02:24 +00:00
accounts: no-op change to reduce diff
This commit is contained in:
parent
afa22478dd
commit
bc201f7c93
1 changed files with 5 additions and 5 deletions
|
|
@ -29,6 +29,11 @@ import (
|
||||||
// the manager will buffer in its channel.
|
// the manager will buffer in its channel.
|
||||||
const managerSubBufferSize = 50
|
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
|
// newBackendEvent lets the manager know it should
|
||||||
// track the given backend for wallet updates.
|
// track the given backend for wallet updates.
|
||||||
type newBackendEvent struct {
|
type newBackendEvent struct {
|
||||||
|
|
@ -52,11 +57,6 @@ type Manager struct {
|
||||||
lock sync.RWMutex
|
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
|
// NewManager creates a generic account manager to sign transaction via various
|
||||||
// supported backends.
|
// supported backends.
|
||||||
func NewManager(config *Config, backends ...Backend) *Manager {
|
func NewManager(config *Config, backends ...Backend) *Manager {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue