Remove irrelevant comments

This commit is contained in:
coffeepots 2018-11-08 18:54:21 +00:00
parent 4c6a686072
commit 0366dd47d9
1 changed files with 1 additions and 2 deletions

View File

@ -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()