This commit is contained in:
Konstantin Vedernikov 2025-06-15 19:22:03 +00:00
parent 3486a4abf1
commit b446cd6e43

View file

@ -444,7 +444,6 @@ func (api *SignerAPI) derivationLoop(events chan accounts.WalletEvent) {
// List returns the set of wallet this signer manages. Each wallet can contain // List returns the set of wallet this signer manages. Each wallet can contain
// multiple accounts. // multiple accounts.
func (api *SignerAPI) List(ctx context.Context) ([]common.Address, error) { func (api *SignerAPI) List(ctx context.Context) ([]common.Address, error) {
fmt.Println("listing break point")
var accs = make([]accounts.Account, 0) var accs = make([]accounts.Account, 0)
// accs is initialized as empty list, not nil. We use 'nil' to signal // accs is initialized as empty list, not nil. We use 'nil' to signal
// rejection, as opposed to an empty list. // rejection, as opposed to an empty list.