From 0366dd47d94c07e7d32606343adfda6043b7a59d Mon Sep 17 00:00:00 2001 From: coffeepots Date: Thu, 8 Nov 2018 18:54:21 +0000 Subject: [PATCH] Remove irrelevant comments --- tests/test_precompiles.nim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_precompiles.nim b/tests/test_precompiles.nim index c25c7f79e..c11249cd5 100644 --- a/tests/test_precompiles.nim +++ b/tests/test_precompiles.nim @@ -19,9 +19,8 @@ template doTest(fixture: JsonNode, address: byte, action: untyped): untyped = header = BlockHeader(blockNumber: blockNum) expected = test["expected"].getStr.hexToSeqByte var addressBytes = newSeq[byte](32) - addressBytes[31] = address # TODO: Endian + addressBytes[31] = address var - # Data has the address injected at the start to simulate the real call. dataStr = test["input"].getStr data = if dataStr.len > 0: dataStr.hexToSeqByte else: @[] memDb = newMemDB()