Commit 10243c73 authored by Adrian Sutton's avatar Adrian Sutton

op-e2e: Use a fixed seed to make TestMixedDeposits repeatable.

parent d240329d
...@@ -292,7 +292,7 @@ func TestMixedDepositValidity(t *testing.T) { ...@@ -292,7 +292,7 @@ func TestMixedDepositValidity(t *testing.T) {
} }
// Create our random provider // Create our random provider
randomProvider := rand.New(rand.NewSource(time.Now().Unix())) randomProvider := rand.New(rand.NewSource(1452))
// Now we create a number of deposits from each transactor // Now we create a number of deposits from each transactor
for i := 0; i < depositTxCount; i++ { for i := 0; i < depositTxCount; i++ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment