Skip to content

Commit

Permalink
upgrade test-vectors deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
raulk committed Sep 3, 2020
1 parent ada5e6a commit 903a2c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion extern/test-vectors
Submodule test-vectors updated 39 files
+15 −20 README.md
+54 −1 chaos/actor.go
+226 −0 chaos/cbor_gen.go
+2 −0 chaos/gen/gen.go
+5 −5 chaos/ids.go
+67 −0 corpus/actor_deletion/beneficiary--delete-w-balance-and-beneficiary.json
+58 −0 corpus/actor_deletion/no_beneficiary--delete-w-zero-balance.json
+72 −0 corpus/actor_deletion/x--beneficiary--fail-delete-w-balance-and-self-beneficiary.json
+8 −8 corpus/nested/nested_sends--fail-insufficient-funds-for-transfer-in-inner-send.json
+103 −0 corpus/reward/penalties--not-penalized-insufficient-balance-to-cover-gas-and-transfer.json
+111 −0 corpus/reward/penalties--not-penalized-insufficient-gas-for-return.json
+104 −0 corpus/reward/penalties--penalize-bad-nonce-multiple-miners.json
+104 −0 corpus/reward/penalties--penalize-inexistent-sender-multiple-miners.json
+112 −0 corpus/reward/penalties--penalize-insufficient-balance-to-cover-gas.json
+104 −0 corpus/reward/penalties--penalize-non-account-sender-multiple-miners.json
+60 −27 gen/builders/actors.go
+8 −0 gen/builders/asserter.go
+10 −12 gen/builders/builder_tipset.go
+20 −17 gen/builders/gas.go
+1 −1 gen/builders/messages.go
+5 −10 gen/builders/messages_typed.go
+1 −1 gen/builders/predicates.go
+2 −2 gen/builders/wallet.go
+138 −0 gen/suites/actor_deletion/main.go
+47 −0 gen/suites/msg_application/duplicates.go
+31 −0 gen/suites/msg_application/gas_cost.go
+19 −0 gen/suites/msg_application/main.go
+1 −1 gen/suites/multisig/ok.go
+1 −1 gen/suites/nested/main.go
+14 −28 gen/suites/nested/nested.go
+128 −0 gen/suites/reward/main.go
+3 −0 gen/suites/reward/miner.go
+94 −0 gen/suites/reward/penalties.go
+5 −7 gen/suites/transfer/main.go
+2 −3 gen/suites/transfer/system_receiver.go
+2 −2 gen/suites/vm_violations/main.go
+1 −1 go.mod
+3 −0 go.sum
+1 −1 schema/schema.go
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ require (
github.com/filecoin-project/specs-actors v0.9.3
github.com/filecoin-project/specs-storage v0.1.1-0.20200730063404-f7db367e9401
github.com/filecoin-project/statediff v0.0.1
github.com/filecoin-project/test-vectors v0.0.0-20200902131127-9806d09b005d
github.com/filecoin-project/test-vectors v0.0.0-20200903223003-42622a706247
github.com/gbrlsnchs/jwt/v3 v3.0.0-beta.1
github.com/go-kit/kit v0.10.0
github.com/google/uuid v1.1.1
Expand Down
2 changes: 1 addition & 1 deletion go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ github.com/filecoin-project/go-statestore v0.1.0/go.mod h1:LFc9hD+fRxPqiHiaqUEZO
github.com/filecoin-project/go-storedcounter v0.0.0-20200421200003-1c99c62e8a5b h1:fkRZSPrYpk42PV3/lIXiL0LHetxde7vyYYvSsttQtfg=
github.com/filecoin-project/go-storedcounter v0.0.0-20200421200003-1c99c62e8a5b/go.mod h1:Q0GQOBtKf1oE10eSXSlhN45kDBdGvEcVOqMiffqX+N8=
github.com/filecoin-project/lotus v0.4.3-0.20200820203717-d1718369a182/go.mod h1:biFZPQ/YyQGfkHUmHMiaNf2hnD6zm1+OAXPQYQ61Zkg=
github.com/filecoin-project/lotus v0.5.8-0.20200902130912-0962292f920e/go.mod h1:OkZ5aUqs+fFnJOq9243WJDsTa9c3/Ae67NIAwVhAB+0=
github.com/filecoin-project/lotus v0.5.8-0.20200903221953-ada5e6ae68cf/go.mod h1:wxuzS4ozpCFThia18G+J5P0Jp/DSiq9ezzJF1yvZuP4=
github.com/filecoin-project/sector-storage v0.0.0-20200712023225-1d67dcfa3c15/go.mod h1:salgVdX7qeXFo/xaiEQE29J4pPkjn71T0kt0n+VDBzo=
github.com/filecoin-project/sector-storage v0.0.0-20200730050024-3ee28c3b6d9a/go.mod h1:oOawOl9Yk+qeytLzzIryjI8iRbqo+qzS6EEeElP4PWA=
github.com/filecoin-project/sector-storage v0.0.0-20200810171746-eac70842d8e0 h1:E1fZ27fhKK05bhZItfTwqr1i05vXnEZJznQFEYwEEUU=
Expand Down

0 comments on commit 903a2c3

Please sign in to comment.