Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: linera-io/linera-protocol
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4b4da1c7b01fdd6a24ecbaaa9548fe0a9ff89be8
Choose a base ref
..
head repository: linera-io/linera-protocol
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 38537e306a02b7b1f8b0c0b06003dfeb94f837bb
Choose a head ref
Showing with 1,870 additions and 1,136 deletions.
  1. +905 −730 Cargo.lock
  2. +1 −1 Cargo.toml
  3. +4 −3 kubernetes/linera-validator/helmfile.yaml
  4. +1 −1 linera-base/src/data_types.rs
  5. +0 −5 linera-chain/src/manager.rs
  6. +24 −4 linera-client/src/client_options.rs
  7. +4 −0 linera-client/src/util.rs
  8. +11 −4 linera-core/src/chain_worker/actor.rs
  9. +16 −17 linera-core/src/chain_worker/state/attempted_changes.rs
  10. +13 −2 linera-core/src/chain_worker/state/mod.rs
  11. +46 −7 linera-core/src/client/mod.rs
  12. +7 −0 linera-core/src/local_node.rs
  13. +13 −2 linera-core/src/node.rs
  14. +14 −5 linera-core/src/remote_node.rs
  15. +50 −5 linera-core/src/unit_tests/test_utils.rs
  16. +13 −6 linera-core/src/unit_tests/wasm_worker_tests.rs
  17. +4 −4 linera-core/src/unit_tests/worker_tests.rs
  18. +2 −1 linera-core/src/updater.rs
  19. +32 −15 linera-core/src/worker.rs
  20. +1 −1 linera-execution/src/lib.rs
  21. +30 −8 linera-rpc/proto/rpc.proto
  22. +33 −6 linera-rpc/src/client.rs
  23. +47 −18 linera-rpc/src/grpc/client.rs
  24. +44 −4 linera-rpc/src/grpc/conversions.rs
  25. +47 −2 linera-rpc/src/grpc/server.rs
  26. +0 −1 linera-rpc/src/lib.rs
  27. +34 −10 linera-rpc/src/message.rs
  28. +18 −6 linera-rpc/src/simple/client.rs
  29. +25 −4 linera-rpc/src/simple/server.rs
  30. +37 −25 linera-rpc/tests/snapshots/format__format.yaml.snap
  31. +15 −4 linera-sdk/src/test/chain.rs
  32. +9 −1 linera-sdk/src/test/validator.rs
  33. +23 −3 linera-service/src/linera/main.rs
  34. +41 −3 linera-service/src/proxy/grpc.rs
  35. +20 −11 linera-service/src/proxy/main.rs
  36. +9 −2 linera-service/src/schema_export.rs
  37. +55 −64 linera-service/src/util.rs
  38. +21 −6 linera-service/tests/readme_test.rs
  39. +66 −39 linera-storage/src/db_storage.rs
  40. +5 −0 linera-storage/src/lib.rs
  41. +124 −91 linera-views/src/backends/scylla_db.rs
  42. +3 −0 linera-views/src/batch.rs
  43. +3 −15 scripts/deploy-validator.sh
Loading