From 54fb7c53067307d987641811a6cf79091068a32d Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Mon, 24 Jul 2023 17:50:25 -0600 Subject: [PATCH] Remove incorrect comment about Soroban u256 representation (#126) --- Stellar-contract.x | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Stellar-contract.x b/Stellar-contract.x index 5bdc01a..369896b 100644 --- a/Stellar-contract.x +++ b/Stellar-contract.x @@ -38,8 +38,7 @@ enum SCValType // 128 bits is naturally supported by Rust and we use it for Soroban // fixed-point arithmetic prices / balances / similar "quantities". These - // are represented in XDR as a pair of 2 u64s, unlike {u,i}256 which is - // represented as an array of 32 bytes. + // are represented in XDR as a pair of 2 u64s. SCV_U128 = 9, SCV_I128 = 10,