Skip to content

Commit

Permalink
contracts/chequebook: increase interval between auto deposits (ethere…
Browse files Browse the repository at this point in the history
  • Loading branch information
nonsense authored and mariameda committed Aug 19, 2018
1 parent 9431e77 commit b65c10b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/chequebook/cheque_test.go
Expand Up @@ -281,8 +281,8 @@ func TestDeposit(t *testing.T) {
t.Fatalf("expected balance %v, got %v", exp, chbook.Balance())
}

// autodeposit every 30ms if new cheque issued
interval := 30 * time.Millisecond
// autodeposit every 200ms if new cheque issued
interval := 200 * time.Millisecond
chbook.AutoDeposit(interval, common.Big1, balance)
_, err = chbook.Issue(addr1, amount)
if err != nil {
Expand Down

0 comments on commit b65c10b

Please sign in to comment.