aboutsummaryrefslogtreecommitdiffstats
path: root/createRandomTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'createRandomTest.cpp')
-rw-r--r--createRandomTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/createRandomTest.cpp b/createRandomTest.cpp
index 37d61fac..a913d697 100644
--- a/createRandomTest.cpp
+++ b/createRandomTest.cpp
@@ -73,7 +73,7 @@ int main(int argc, char *argv[])
uint8_t opcode = randGen();
// disregard all invalid commands, except of one (0x0c)
- if ((dev::eth::isValidInstruction(dev::eth::Instruction(opcode)) || (randGen() > 128)))
+ if ((dev::eth::isValidInstruction(dev::eth::Instruction(opcode)) || (randGen() > 250)))
randomCode += toHex(toCompactBigEndian(opcode));
else
i--;