Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
gossamer: 22827e7 -> 3350232
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianFranzen committed Jul 7, 2021
1 parent ba5c3df commit 1c5ee45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hosts/gossamer
Submodule gossamer updated 80 files
+3 −3 chain/dev/genesis-spec.json
+141 −138 chain/gssmr/genesis-spec.json
+13 −22 chain/gssmr/genesis.json
+4 −1 cmd/gossamer/config_test.go
+1 −1 cmd/gossamer/utils_test.go
+44 −51 dot/core/messages_test.go
+6 −12 dot/core/service.go
+4 −4 dot/core/service_test.go
+5 −5 dot/digest/digest_test.go
+2 −2 dot/metrics/collector.go
+6 −1 dot/network/notifications.go
+28 −21 dot/network/sync.go
+5 −4 dot/network/sync_test.go
+3 −4 dot/node.go
+4 −0 dot/rpc/http.go
+14 −13 dot/rpc/modules/author.go
+268 −0 dot/rpc/modules/author_integration_test.go
+316 −261 dot/rpc/modules/author_test.go
+79 −0 dot/rpc/modules/mocks/TransactionStateAPI.go
+1 −1 dot/rpc/modules/mocks/block_api.go
+1 −1 dot/rpc/modules/mocks/core_api.go
+1 −1 dot/rpc/modules/mocks/storage_api.go
+5 −8 dot/rpc/modules/system.go
+47 −5 dot/rpc/modules/system_test.go
+116 −45 dot/rpc/subscription/listeners.go
+80 −0 dot/rpc/subscription/subscription.go
+195 −158 dot/rpc/subscription/websocket.go
+31 −18 dot/rpc/subscription/websocket_test.go
+3 −2 dot/state/block.go
+2 −2 dot/state/block_notify_test.go
+4 −4 dot/sync/message.go
+9 −9 dot/sync/message_test.go
+5 −4 dot/sync/test_helpers.go
+43 −3 dot/telemetry/telemetry.go
+33 −0 dot/telemetry/telemetry_test.go
+3 −4 dot/types/account.go
+2 −2 dot/types/extrinsic.go
+6 −14 go.mod
+418 −23 go.sum
+15 −8 lib/babe/build.go
+111 −18 lib/babe/build_test.go
+192 −61 lib/babe/errors.go
+10 −0 lib/babe/errors_test.go
+3 −0 lib/common/hash.go
+4 −0 lib/common/well_known_keys.go
+5 −2 lib/genesis/helpers.go
+5 −3 lib/genesis/helpers_test.go
+6 −1 lib/genesis/test_utils.go
+2 −0 lib/grandpa/errors.go
+323 −162 lib/grandpa/grandpa.go
+257 −76 lib/grandpa/grandpa_test.go
+8 −8 lib/grandpa/message.go
+26 −31 lib/grandpa/message_handler.go
+21 −29 lib/grandpa/message_handler_test.go
+5 −5 lib/grandpa/message_test.go
+12 −4 lib/grandpa/message_tracker_test.go
+19 −2 lib/grandpa/network.go
+1 −1 lib/grandpa/network_test.go
+47 −16 lib/grandpa/round_test.go
+1 −0 lib/grandpa/state.go
+34 −20 lib/grandpa/types.go
+9 −9 lib/grandpa/types_test.go
+83 −69 lib/grandpa/vote_message.go
+45 −19 lib/grandpa/vote_message_test.go
+3 −3 lib/runtime/life/exports_test.go
+1 −1 lib/runtime/life/instance.go
+24 −0 lib/runtime/life/resolver.go
+84 −22 lib/runtime/wasmer/exports_test.go
+23 −0 lib/runtime/wasmer/imports.go
+0 −35 lib/transaction/types.go
+2 −1 lib/transaction/types_test.go
+0 −17 package.json
+2 −0 pkg/scale/decode.go
+215 −231 tests/polkadotjs_test/package-lock.json
+1 −1 tests/polkadotjs_test/package.json
+2 −2 tests/polkadotjs_test/start_polkadotjs_test.go
+2 −2 tests/polkadotjs_test/test/test-polkadot.js
+9 −3 tests/polkadotjs_test/test_transaction.js
+7 −24 tests/rpc/rpc_02-author_test.go
+4 −11 tests/stress/stress_test.go

0 comments on commit 1c5ee45

Please sign in to comment.