fix inconsistent capitalization (#5240)
Two cases of inconsistent capitalization, fix them.
This commit is contained in:
parent
b8a32419b8
commit
50dfd846f0
|
@ -1429,7 +1429,7 @@ proc getSuggestedFeeRecipient*(
|
||||||
host.validatorsDir.getSuggestedFeeRecipient(pubkey, defaultFeeRecipient)
|
host.validatorsDir.getSuggestedFeeRecipient(pubkey, defaultFeeRecipient)
|
||||||
|
|
||||||
proc getSuggestedFeeRecipient(
|
proc getSuggestedFeeRecipient(
|
||||||
host: KeyManagerHost, pubkey: ValidatorPubKey,
|
host: KeymanagerHost, pubkey: ValidatorPubKey,
|
||||||
withdrawalAddress: Opt[Eth1Address]): Eth1Address =
|
withdrawalAddress: Opt[Eth1Address]): Eth1Address =
|
||||||
# Enforce the gsfr(foo).valueOr(foo) pattern where feasible
|
# Enforce the gsfr(foo).valueOr(foo) pattern where feasible
|
||||||
let perValidatorDefaultFeeRecipient = getPerValidatorDefaultFeeRecipient(
|
let perValidatorDefaultFeeRecipient = getPerValidatorDefaultFeeRecipient(
|
||||||
|
|
|
@ -149,7 +149,7 @@ proc routeSignedBeaconBlock*(
|
||||||
var workers = newSeq[Future[SendResult]](signedBlobs.len)
|
var workers = newSeq[Future[SendResult]](signedBlobs.len)
|
||||||
for i in 0..<signedBlobs.len:
|
for i in 0..<signedBlobs.len:
|
||||||
let subnet_id = compute_subnet_for_blob_sidecar(BlobIndex(i))
|
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)
|
let allres = await allFinished(workers)
|
||||||
for i in 0..<allres.len:
|
for i in 0..<allres.len:
|
||||||
let res = allres[i]
|
let res = allres[i]
|
||||||
|
|
Loading…
Reference in New Issue