remove emoji from function names (#5633)

Some editors seem to have issues with those. The ones in strings seem to
be alright, though. Rename the affected symbols.
This commit is contained in:
Etan Kissling 2023-11-29 01:30:44 +01:00 committed by GitHub
parent e2e4912645
commit beb915e308
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 18 deletions

View File

@ -37,13 +37,13 @@ type
# Created by http://beatscribe.com/ (beatscribe#1008 on Discord)
# These need to be the main body of the log not to be reformatted or escaped.
proc mono🐼*() = notice "\n" & staticRead("bellatrix" / "mono.txt")
proc color🐼*() = notice "\n" & staticRead("bellatrix" / "color.ans")
proc blink🐼*() = notice "\n" & staticRead("bellatrix" / "blink.ans")
proc bellatrixMono*() = notice "\n" & staticRead("bellatrix" / "mono.txt")
proc bellatrixColor*() = notice "\n" & staticRead("bellatrix" / "color.ans")
proc bellatrixBlink*() = notice "\n" & staticRead("bellatrix" / "blink.ans")
proc mono🦉*() = notice "\n" & staticRead("capella" / "mono.txt")
proc color🦉*() = notice "\n" & staticRead("capella" / "color.ans")
proc blink🦉*() = notice "\n" & staticRead("capella" / "blink.ans")
proc capellaMono*() = notice "\n" & staticRead("capella" / "mono.txt")
proc capellaColor*() = notice "\n" & staticRead("capella" / "color.ans")
proc capellaBlink*() = notice "\n" & staticRead("capella" / "blink.ans")
proc mono🐟*() = notice "\n" & staticRead("deneb" / "mono.txt")
proc color🐟*() = notice "\n" & staticRead("deneb" / "color.ans")
proc denebMono*() = notice "\n" & staticRead("deneb" / "mono.txt")
proc denebColor*() = notice "\n" & staticRead("deneb" / "color.ans")

View File

@ -170,18 +170,18 @@ func getVanityLogs(stdoutKind: StdoutLogKind): VanityLogs =
of StdoutLogKind.Auto: raiseAssert "inadmissable here"
of StdoutLogKind.Colors:
VanityLogs(
onMergeTransitionBlock: color🐼,
onFinalizedMergeTransitionBlock: blink🐼,
onUpgradeToCapella: color🦉,
onKnownBlsToExecutionChange: blink🦉,
onUpgradeToDeneb: color🐟)
onMergeTransitionBlock: bellatrixColor,
onFinalizedMergeTransitionBlock: bellatrixBlink,
onUpgradeToCapella: capellaColor,
onKnownBlsToExecutionChange: capellaBlink,
onUpgradeToDeneb: denebColor)
of StdoutLogKind.NoColors:
VanityLogs(
onMergeTransitionBlock: mono🐼,
onFinalizedMergeTransitionBlock: mono🐼,
onUpgradeToCapella: mono🦉,
onKnownBlsToExecutionChange: mono🦉,
onUpgradeToDeneb: mono🐟)
onMergeTransitionBlock: bellatrixMono,
onFinalizedMergeTransitionBlock: bellatrixMono,
onUpgradeToCapella: capellaMono,
onKnownBlsToExecutionChange: capellaMono,
onUpgradeToDeneb: denebMono)
of StdoutLogKind.Json, StdoutLogKind.None:
VanityLogs(
onMergeTransitionBlock: