From 257ff60b9b4cc9971ae416fc75c02b6cf1c22dcd Mon Sep 17 00:00:00 2001 From: pscott Date: Tue, 4 May 2021 12:06:16 +0200 Subject: [PATCH] Fix typo --- src_plugins/eth2/eth2_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src_plugins/eth2/eth2_plugin.c b/src_plugins/eth2/eth2_plugin.c index ea360d2..362282f 100644 --- a/src_plugins/eth2/eth2_plugin.c +++ b/src_plugins/eth2/eth2_plugin.c @@ -40,7 +40,7 @@ static void to_lowercase(char *str, unsigned char size) { } // Fills the `out` buffer with the lowercase string representation of the pubkey passed in as binary -// format by `in`. Does not check the size, so expects `out` to be big enough to told the string +// format by `in`. Does not check the size, so expects `out` to be big enough to hold the string // representation. Returns the length of string (counting the null terminating character). static int getEthDisplayableAddress(char *out, uint8_t *in) { out[0] = '0';