Skip to content

Commit 8ba1714

Browse files
update coreutils
1 parent 6f5444e commit 8ba1714

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ require (
1515
github.com/montanaflynn/stats v0.7.1
1616
github.com/shopspring/decimal v1.4.0
1717
go.sia.tech/core v0.12.3
18-
go.sia.tech/coreutils v0.13.6
18+
go.sia.tech/coreutils v0.13.7-0.20250519232338-480bcda7534d
1919
go.sia.tech/gofakes3 v0.0.5
2020
go.sia.tech/hostd/v2 v2.1.0
2121
go.sia.tech/jape v0.14.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ go.etcd.io/bbolt v1.4.0 h1:TU77id3TnN/zKr7CO/uk+fBCwF2jGcMuw2B/FMAzYIk=
7878
go.etcd.io/bbolt v1.4.0/go.mod h1:AsD+OCi/qPN1giOX1aiLAha3o1U8rAz65bvN4j0sRuk=
7979
go.sia.tech/core v0.12.3 h1:p0BfsKfc7jVRKRDm2K9udxqBEqIGU0An54vP4WL+SH8=
8080
go.sia.tech/core v0.12.3/go.mod h1:woUSWQdrRFXkYdk2g2532rguQ1EyMU+2/kcC4JnHSx4=
81-
go.sia.tech/coreutils v0.13.6 h1:RNCrMRO2QA0f/0OMlV5ULjyKYK1KUH1qN0zu/SLvIQk=
82-
go.sia.tech/coreutils v0.13.6/go.mod h1:JR8onVt1R9wz4kg/bzyGg75HuZyTbBVmt3OKcUac6Qo=
81+
go.sia.tech/coreutils v0.13.7-0.20250519232338-480bcda7534d h1:WOC0PB4oYTtL/ovSXAHdcOwnTIiEO/gO4hE5BNpyJDw=
82+
go.sia.tech/coreutils v0.13.7-0.20250519232338-480bcda7534d/go.mod h1:JR8onVt1R9wz4kg/bzyGg75HuZyTbBVmt3OKcUac6Qo=
8383
go.sia.tech/gofakes3 v0.0.5 h1:vFhVBUFbKE9ZplvLE2w4TQxFMQyF8qvgxV4TaTph+Vw=
8484
go.sia.tech/gofakes3 v0.0.5/go.mod h1:LXEzwGw+OHysWLmagleCttX93cJZlT9rBu/icOZjQ54=
8585
go.sia.tech/hostd/v2 v2.1.0 h1:l7/wbdviHVz0eZKJ7LKbj5zjKY8ak0spSK78WCmWfIk=

internal/rhp/v4/rhp.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ func (c *Client) VerifySector(ctx context.Context, prices rhp4.HostPrices, token
8585
// FreeSectors removes sectors from a contract.
8686
func (c *Client) FreeSectors(ctx context.Context, hk types.PublicKey, hostIP string, cs consensus.State, prices rhp4.HostPrices, sk types.PrivateKey, contract rhp.ContractRevision, indices []uint64) (res rhp.RPCFreeSectorsResult, _ error) {
8787
err := c.tpool.withTransport(ctx, hk, hostIP, func(t rhp.TransportClient) (err error) {
88-
res, err = rhp.RPCFreeSectors(ctx, t, cs, prices, sk, contract, indices)
88+
res, err = rhp.RPCFreeSectors(ctx, t, sk, cs, prices, contract, indices)
8989
return
9090
})
9191
return res, err
@@ -101,7 +101,7 @@ func (c *Client) AppendSectors(ctx context.Context, hk types.PublicKey, hostIP s
101101
// NOTE: immediately append the sector for the time being, eventually
102102
// this will be a 2-step process where uploads are unblocked as soon as
103103
// the sector is on the host, but not yet added to the contract
104-
res, err = rhp.RPCAppendSectors(ctx, t, cs, prices, sk, contract, roots)
104+
res, err = rhp.RPCAppendSectors(ctx, t, sk, cs, prices, contract, roots)
105105
return
106106
})
107107
return res, err

0 commit comments

Comments
 (0)