Skip to content

Commit

Permalink
refactor: increase batch usable check timeout (#369)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrekucci authored Nov 28, 2023
1 parent c2f2104 commit 70cfa94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/bee/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ func (c *Client) CreatePostageBatch(ctx context.Context, amount int64, depth uin
exists := false
usable := false
// wait for the stamp to become usable
for i := 0; i < 300; i++ {
for i := 0; i < 900; i++ {
time.Sleep(1 * time.Second)
state, err := c.debug.Postage.PostageStamp(ctx, id)
if err != nil {
Expand Down

0 comments on commit 70cfa94

Please sign in to comment.