From 14e63735b79b521678dddd29aab93e1f884525ca Mon Sep 17 00:00:00 2001 From: Nagu Thogiti Date: Mon, 29 Apr 2024 14:33:58 +0800 Subject: [PATCH] Update docs/wiki/EL/RLP.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Mário Havel <61149543+taxmeifyoucan@users.noreply.github.com> --- docs/wiki/EL/RLP.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/wiki/EL/RLP.md b/docs/wiki/EL/RLP.md index 0496a470..3c20f8ae 100644 --- a/docs/wiki/EL/RLP.md +++ b/docs/wiki/EL/RLP.md @@ -18,7 +18,7 @@ Data serialization is the process of converting data structures or objects into > RLP is intended to be a highly minimalistic serialization format; its sole purpose is to store nested arrays of bytes. Unlike protobuf, BSON and other existing solutions, RLP does not attempt to define any specific data types such as booleans, floats, doubles or even integers; instead, it simply exists to store structure, in the form of nested arrays, and leaves it up to the protocol to determine the meaning of the arrays. > -- Ethereum's design rationale -RLP is tailored for Ethereum to meet specific needs: +RLP was created with Ethereum and is tailored to meet its specific needs: - Minimalistic Design: It focuses purely on storing structure without imposing data type definitions. - Consistency: It guarantees byte-perfect consistency across different implementations, crucial for the deterministic nature required in blockchain operations.