We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d3c9db5 + 9fad9b9 commit 80d005fCopy full SHA for 80d005f
bootstrap/bootstrap.go
@@ -213,6 +213,11 @@ func (b *Bootstrap) StartAPIServer(ctx context.Context) error {
213
return err
214
}
215
for _, key := range account.Keys {
216
+ // Skip account keys that do not use the same Publick Key as the
217
+ // configured crypto.Signer object.
218
+ if !key.PublicKey.Equals(signer.PublicKey()) {
219
+ continue
220
+ }
221
accountKeys = append(accountKeys, &requester.AccountKey{
222
AccountKey: *key,
223
Address: b.config.COAAddress,
0 commit comments