From bc201f7c93e478134c37de3c32984a8693455d54 Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Thu, 14 Nov 2024 09:15:00 +0100 Subject: [PATCH] accounts: no-op change to reduce diff --- accounts/manager.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/accounts/manager.go b/accounts/manager.go index f5e39a7fb9..ac21ecd985 100644 --- a/accounts/manager.go +++ b/accounts/manager.go @@ -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 {