Skip to content

Commit

Permalink
chore(deps): update to rc candidate
Browse files Browse the repository at this point in the history
  • Loading branch information
hannahhoward committed Jan 7, 2023
1 parent 4826b67 commit 143abad
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/filecoin-project/go-address v0.0.6
github.com/filecoin-project/go-cbor-util v0.0.1
github.com/filecoin-project/go-commp-utils v0.1.3
github.com/filecoin-project/go-data-transfer/v2 v2.0.0-20221008000603-c9889dcce66b
github.com/filecoin-project/go-data-transfer/v2 v2.0.0-rc1
github.com/filecoin-project/go-ds-versioning v0.1.2
github.com/filecoin-project/go-fil-commcid v0.1.0
github.com/filecoin-project/go-fil-commp-hashhash v0.1.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ github.com/filecoin-project/go-crypto v0.0.0-20191218222705-effae4ea9f03/go.mod
github.com/filecoin-project/go-crypto v0.0.1 h1:AcvpSGGCgjaY8y1az6AMfKQWreF/pWO2JJGLl6gCq6o=
github.com/filecoin-project/go-crypto v0.0.1/go.mod h1:+viYnvGtUTgJRdy6oaeF4MTFKAfatX071MPDPBL11EQ=
github.com/filecoin-project/go-data-transfer v1.15.2 h1:PzqsFr2Q/onMGKrGh7TtRT0dKsJcVJrioJJnjnKmxlk=
github.com/filecoin-project/go-data-transfer/v2 v2.0.0-20221008000603-c9889dcce66b h1:r11hBiZShNch00bAGe04xsuQGmckiUR0EA1KWtdsikk=
github.com/filecoin-project/go-data-transfer/v2 v2.0.0-20221008000603-c9889dcce66b/go.mod h1:R+IlFJkqjUOWS/3eqDaKGdPkD4JULosN7YdIN22+BuI=
github.com/filecoin-project/go-data-transfer/v2 v2.0.0-rc1 h1:nQqLXSHhLTdCTceGqgRm/PmZxL5pc60INLBWxWAJ+IE=
github.com/filecoin-project/go-data-transfer/v2 v2.0.0-rc1/go.mod h1:R+IlFJkqjUOWS/3eqDaKGdPkD4JULosN7YdIN22+BuI=
github.com/filecoin-project/go-ds-versioning v0.1.2 h1:to4pTadv3IeV1wvgbCbN6Vqd+fu+7tveXgv/rCEZy6w=
github.com/filecoin-project/go-ds-versioning v0.1.2/go.mod h1:C9/l9PnB1+mwPa26BBVpCjG/XQCB0yj/q5CK2J8X1I4=
github.com/filecoin-project/go-fil-commcid v0.0.0-20201016201715-d41df56b4f6a/go.mod h1:Eaox7Hvus1JgPrL5+M3+h7aSPHc0cVqpSxA+TxIEpZQ=
Expand Down
18 changes: 9 additions & 9 deletions shared_testutil/generators.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ import (
// MakeTestSignedVoucher generates a random SignedVoucher that has all non-zero fields
func MakeTestSignedVoucher() *paych.SignedVoucher {
return &paych.SignedVoucher{
ChannelAddr: address.TestAddress,
TimeLockMin: abi.ChainEpoch(rand.Int63()),
TimeLockMax: 0,
ChannelAddr: address.TestAddress,
TimeLockMin: abi.ChainEpoch(rand.Int63()),
TimeLockMax: 0,
SecretHash: []byte("secret-preimage"),
Extra: MakeTestModVerifyParams(),
Lane: uint64(rand.Uint32()),
Nonce: uint64(rand.Uint32()),
Amount: MakeTestTokenAmount(),
Merges: []paych.Merge{MakeTestMerge()},
Signature: MakeTestSignature(),
Extra: MakeTestModVerifyParams(),
Lane: uint64(rand.Uint32()),
Nonce: uint64(rand.Uint32()),
Amount: MakeTestTokenAmount(),
Merges: []paych.Merge{MakeTestMerge()},
Signature: MakeTestSignature(),
}
}

Expand Down

0 comments on commit 143abad

Please sign in to comment.