Skip to content

Commit

Permalink
bump mobilecoin (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
eranrund authored Apr 26, 2024
1 parent 50b43eb commit fa17684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobilecoin
Submodule mobilecoin updated 54 files
+0 −27 .github/actions/mobilecoin-cache-seeds/action.yaml
+1 −0 .github/actions/run-mc-tests/action.yml
+0 −81 .github/actions/setup-rust/action.yml
+2 −2 .github/actions/upload-core-dumps/action.yml
+34 −52 .github/workflows/ci.yml
+4 −2 .github/workflows/dependent-repos.yml
+7 −5 .github/workflows/mobilecoin-dev-cd.yaml
+13 −2 .github/workflows/mobilecoin-dispatch-dev-deploy.yaml
+4 −4 .github/workflows/mobilecoin-workflow-dev-bootstrap.yaml
+1 −0 .internal-ci/helm/fog-ingest/values.yaml
+3 −3 .internal-ci/helm/fog-ledger/values.yaml
+2 −2 .mobconf
+29 −3 CHANGELOG.md
+76 −26 Cargo.lock
+2 −0 Cargo.toml
+1 −1 core/types/src/account.rs
+2 −2 go-grpc-gateway/go.mod
+4 −4 go-grpc-gateway/go.sum
+1 −1 light-client/cli/Cargo.toml
+1 −1 light-client/relayer/Cargo.toml
+1 −1 light-client/verifier/Cargo.toml
+2 −0 mobilecoind/Cargo.toml
+16 −0 mobilecoind/src/bin/main.rs
+15 −0 mobilecoind/src/config.rs
+1 −1 mobilecoind/src/conversions.rs
+25 −1 mobilecoind/src/database.rs
+12 −0 mobilecoind/src/error.rs
+2 −0 mobilecoind/src/lib.rs
+373 −0 mobilecoind/src/t3_store.rs
+134 −0 mobilecoind/src/t3_sync.rs
+1 −0 mobilecoind/src/transaction_memo.rs
+1 −1 mobilecoind/strategies/requirements.txt
+19 −0 t3/README.md
+20 −0 t3/api/Cargo.toml
+19 −0 t3/api/build.rs
+309 −0 t3/api/proto/external/v1/external.proto
+31 −0 t3/api/proto/google/api/annotations.proto
+375 −0 t3/api/proto/google/api/http.proto
+189 −0 t3/api/proto/pb/gubernator/gubernator.proto
+73 −0 t3/api/proto/t3/admin/v1/api_key_service.proto
+23 −0 t3/api/proto/t3/admin/v1/migration_service.proto
+58 −0 t3/api/proto/t3/admin/v1/partner_service.proto
+48 −0 t3/api/proto/t3/v1/admin.proto
+258 −0 t3/api/proto/t3/v1/t3.proto
+34 −0 t3/api/src/lib.rs
+20 −0 t3/connection/Cargo.toml
+23 −0 t3/connection/src/error.rs
+156 −0 t3/connection/src/lib.rs
+30 −0 t3/protobuf_update.sh
+1 −2 test-vectors/memos/build.rs
+99 −0 tools/k8s-dev/down.sh
+91 −0 tools/k8s-dev/up.sh
+3 −7 transaction/builder/src/memo_builder/rth_memo_builder.rs
+1 −1 transaction/summary/src/verifier.rs

0 comments on commit fa17684

Please sign in to comment.