delete trailing spaces

This commit is contained in:
Ștefan Talpalaru 2019-03-21 15:35:25 +01:00
parent 0c156a5030
commit 59e1b3fa6b
No known key found for this signature in database
GPG Key ID: CBF7934204F1B6F9

View File

@ -145,10 +145,10 @@ proc testFixture(fixtures: JsonNode, testStatusIMPL: var TestStatus,
let ftrans = fixture["transaction"] let ftrans = fixture["transaction"]
var testedInFork = false var testedInFork = false
for fork in supportedForks: for fork in supportedForks:
if fixture["post"].hasKey(forkNames[fork]): if fixture["post"].hasKey(forkNames[fork]):
for expectation in fixture["post"][forkNames[fork]]: for expectation in fixture["post"][forkNames[fork]]:
inc tester.index inc tester.index
if specifyIndex > 0 and tester.index != specifyIndex: if specifyIndex > 0 and tester.index != specifyIndex:
continue continue
testedInFork = true testedInFork = true
tester.expectedHash = expectation["hash"].getStr tester.expectedHash = expectation["hash"].getStr