fix inconsistent capitalization (#5240)

Two cases of inconsistent capitalization, fix them.
This commit is contained in:
Etan Kissling 2023-08-03 18:53:32 +02:00 committed by GitHub
parent b8a32419b8
commit 50dfd846f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1429,7 +1429,7 @@ proc getSuggestedFeeRecipient*(
host.validatorsDir.getSuggestedFeeRecipient(pubkey, defaultFeeRecipient)
proc getSuggestedFeeRecipient(
host: KeyManagerHost, pubkey: ValidatorPubKey,
host: KeymanagerHost, pubkey: ValidatorPubKey,
withdrawalAddress: Opt[Eth1Address]): Eth1Address =
# Enforce the gsfr(foo).valueOr(foo) pattern where feasible
let perValidatorDefaultFeeRecipient = getPerValidatorDefaultFeeRecipient(

View File

@ -149,7 +149,7 @@ proc routeSignedBeaconBlock*(
var workers = newSeq[Future[SendResult]](signedBlobs.len)
for i in 0..<signedBlobs.len:
let subnet_id = compute_subnet_for_blob_sidecar(BlobIndex(i))
workers[i] = router[].network.broadcastBlobsidecar(subnet_id, signedBlobs[i])
workers[i] = router[].network.broadcastBlobSidecar(subnet_id, signedBlobs[i])
let allres = await allFinished(workers)
for i in 0..<allres.len:
let res = allres[i]