Skip to content

Commit

Permalink
debug: Bump oasis-sdk external repo to custom branch
Browse files Browse the repository at this point in the history
  • Loading branch information
matevz committed Mar 22, 2022
1 parent 29ac798 commit de2bf43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external/oasis-sdk
Submodule oasis-sdk updated 68 files
+21 −4 .github/workflows/ci-test.yaml
+2 −0 .gitignore
+145 −132 Cargo.lock
+1 −1 README.md
+116 −0 cli/cmd/accounts.go
+2 −0 cli/cmd/common/transaction.go
+2 −1 cli/cmd/root.go
+25 −2 cli/cmd/wallet.go
+75 −3 cli/config/wallet.go
+19 −17 cli/go.mod
+195 −197 cli/go.sum
+10 −6 cli/wallet/file/file.go
+73 −0 cli/wallet/ledger/common.go
+189 −0 cli/wallet/ledger/device.go
+191 −0 cli/wallet/ledger/ledger.go
+61 −0 cli/wallet/ledger/signer.go
+3 −0 cli/wallet/wallet.go
+1 −1 client-sdk/go/config/default.go
+25 −26 client-sdk/go/go.mod
+128 −68 client-sdk/go/go.sum
+14 −0 client-sdk/go/modules/core/core.go
+39 −1 client-sdk/go/modules/core/types.go
+2 −2 client-sdk/ts-web/core/package.json
+24 −23 client-sdk/ts-web/core/reflect-go/go.mod
+263 −201 client-sdk/ts-web/core/reflect-go/go.sum
+18 −44 client-sdk/ts-web/core/reflect-go/main.go
+1 −1 client-sdk/ts-web/ext-utils/package.json
+30 −30 client-sdk/ts-web/package-lock.json
+1 −1 client-sdk/ts-web/rt/package.json
+2 −3 client-sdk/ts-web/rt/playground/sample-run-network.sh
+41 −0 client-sdk/ts-web/rt/playground/src/index.js
+11 −0 client-sdk/ts-web/rt/src/core.ts
+25 −1 client-sdk/ts-web/rt/src/types.ts
+1 −1 client-sdk/ts-web/signer-ledger/package.json
+56 −0 docs/runtime/reproducibility.md
+329 −0 docs/runtime/transactions.md
+2 −2 runtime-sdk-macros/src/lib.rs
+67 −0 runtime-sdk-macros/src/method_handler_derive.rs
+4 −4 runtime-sdk/Cargo.toml
+35 −67 runtime-sdk/modules/contracts/src/lib.rs
+1 −0 runtime-sdk/modules/evm/Cargo.toml
+24 −24 runtime-sdk/modules/evm/src/lib.rs
+8 −5 runtime-sdk/modules/evm/src/test.rs
+40 −7 runtime-sdk/src/context.rs
+15 −4 runtime-sdk/src/dispatcher.rs
+44 −1 runtime-sdk/src/module.rs
+1 −0 runtime-sdk/src/modules/consensus_accounts/test.rs
+17 −2 runtime-sdk/src/modules/core/mod.rs
+71 −1 runtime-sdk/src/modules/core/test.rs
+38 −1 runtime-sdk/src/modules/core/types.rs
+6 −2 runtime-sdk/src/runtime.rs
+4 −4 runtime-sdk/src/testing/mock.rs
+10 −19 tests/benchmark/cmd/fixture.go
+84 −67 tests/benchmark/go.mod
+267 −309 tests/benchmark/go.sum
+1 −0 tests/check-core-versions.sh
+2 −2 tests/consts.sh
+5 −2 tests/download-artifacts.sh
+86 −69 tests/e2e/go.mod
+270 −313 tests/e2e/go.sum
+24 −33 tests/e2e/runtime.go
+2 −0 tests/e2e/scenarios.go
+91 −1 tests/e2e/simplekvtest.go
+3 −3 tests/paths.sh
+41 −0 tools/orc/go.mod
+1,173 −0 tools/orc/go.sum
+229 −0 tools/orc/main.go
+36 −0 tools/orc/sgx.go

0 comments on commit de2bf43

Please sign in to comment.