From 5e31e5540839860b6db0918dfa1d9b9ab0d40cd8 Mon Sep 17 00:00:00 2001 From: AlexanderBuzz Date: Mon, 30 Jan 2023 12:38:50 +0100 Subject: [PATCH] - Fixed typo --- content/_code-samples/tx-serialization/js/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/_code-samples/tx-serialization/js/index.js b/content/_code-samples/tx-serialization/js/index.js index 7717a2993d..27dcfc4210 100644 --- a/content/_code-samples/tx-serialization/js/index.js +++ b/content/_code-samples/tx-serialization/js/index.js @@ -576,7 +576,7 @@ class TxSerializer { const fieldBytes = dispatch[fieldType](fieldValue) - logger(fieldName + ' : ' + fieldBytes) + logger(fieldName + ': ' + fieldBytes) return idPrefix.toString("hex") + fieldBytes }