Skip to content

Commit

Permalink
Change concordium-base submodule to main + update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
Hjort committed Mar 13, 2024
1 parent 175c85b commit e8ef295
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 29 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- Added method `findAtLowestHeight` for finding the earliest block satisfying some condition.
- Added method `findAccountCreation` for finding the block in which an account was created.
- Fixed an issue where `ConcordiumHdWallet.fromSeedPhrase` always produced an invalid seed as hex.
- Added `AcceptableRequest` class with `acceptableRequest` and `acceptableAtomicStatement` to check if a request satisfies wallet rules.

## 7.0.0
- Make the `energy` parameter for invoking an instance `Optional`.
Expand Down
2 changes: 1 addition & 1 deletion concordium-base
Submodule concordium-base updated 50 files
+1 −1 .github/workflows/build-test-contracts-common.yaml
+1 −1 .github/workflows/build-test-smart-contracts.yaml
+3 −3 .github/workflows/build-test-sources.yaml
+10 −0 haskell-src/Concordium/Cost.hs
+0 −63 haskell-src/Concordium/Types/Accounts.hs
+0 −42 haskell-src/Concordium/Types/Migration.hs
+14 −0 haskell-src/Concordium/Types/ProtocolVersion.hs
+5 −0 haskell-src/Concordium/Wasm.hs
+73 −16 identity-provider-service/Cargo.lock
+2 −2 identity-provider-service/Cargo.toml
+71 −14 idiss/Cargo.lock
+1 −1 idiss/Cargo.toml
+72 −27 mobile_wallet/Cargo.lock
+1 −1 mobile_wallet/Cargo.toml
+63 −6 rust-bins/Cargo.lock
+20 −77 rust-src/Cargo.lock
+3 −0 rust-src/concordium_base/CHANGELOG.md
+3 −3 rust-src/concordium_base/Cargo.toml
+1 −4 rust-src/concordium_base/src/aggregate_sig/ffi.rs
+3 −3 rust-src/concordium_base/src/aggregate_sig/mod.rs
+18 −32 rust-src/concordium_base/src/cis2_types.rs
+13 −13 rust-src/concordium_base/src/cis4_types.rs
+1 −2 rust-src/concordium_base/src/common/impls.rs
+3 −0 rust-src/concordium_base/src/ffi_helpers/ffi_macros.rs
+1 −2 rust-src/concordium_base/src/id/ffi.rs
+13 −13 rust-src/concordium_base/src/id/id_proof_types.rs
+2 −2 rust-src/concordium_base/src/transactions.rs
+1 −6 rust-src/concordium_base/src/web3id/mod.rs
+85 −0 rust-src/wallet_library/src/default_wallet_config.rs
+1 −0 rust-src/wallet_library/src/lib.rs
+105 −134 rust-src/wallet_library/src/statement.rs
+1 −0 smart-contracts/contracts-common/concordium-contracts-common-derive/CHANGELOG.md
+2 −2 smart-contracts/contracts-common/concordium-contracts-common-derive/Cargo.toml
+1 −1 smart-contracts/contracts-common/concordium-contracts-common-derive/src/derive.rs
+4 −0 smart-contracts/contracts-common/concordium-contracts-common/CHANGELOG.md
+3 −3 smart-contracts/contracts-common/concordium-contracts-common/Cargo.toml
+2 −2 smart-contracts/contracts-common/concordium-contracts-common/src/hashes.rs
+3 −12 smart-contracts/contracts-common/concordium-contracts-common/src/impls.rs
+1 −1 smart-contracts/contracts-common/concordium-contracts-common/src/schema.rs
+162 −4 smart-contracts/contracts-common/concordium-contracts-common/src/types.rs
+ smart-contracts/testdata/contracts/v1/queries-contract-inspection.wasm
+157 −0 smart-contracts/testdata/contracts/v1/queries-contract-inspection.wat
+ smart-contracts/testdata/contracts/v1/upgrading-inspect-module0.wasm
+199 −0 smart-contracts/testdata/contracts/v1/upgrading-inspect-module0.wat
+ smart-contracts/testdata/contracts/v1/upgrading-inspect-module1.wasm
+201 −0 smart-contracts/testdata/contracts/v1/upgrading-inspect-module1.wat
+6 −0 smart-contracts/wasm-chain-integration/CHANGELOG.md
+14 −71 smart-contracts/wasm-chain-integration/Cargo.lock
+12 −2 smart-contracts/wasm-chain-integration/src/v1/ffi.rs
+123 −36 smart-contracts/wasm-chain-integration/src/v1/mod.rs
34 changes: 8 additions & 26 deletions crypto-jni/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crypto-jni/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1358,7 +1358,7 @@ pub extern "system" fn Java_com_concordium_sdk_crypto_CryptoJniNative_isAcceptab
Err(err) => return StringResult::from(err).to_jstring(&env),
};

match request.acceptable_request(&wallet_library::statement::get_default_wallet_config()) {
match request.acceptable_request(&wallet_library::default_wallet_config::default_wallet_config()) {
Ok(r) => r,
Err(err) => return StringResult::from(err).to_jstring(&env),
};
Expand Down Expand Up @@ -1457,7 +1457,7 @@ pub extern "system" fn Java_com_concordium_sdk_crypto_CryptoJniNative_isAcceptab
_marker: std::marker::PhantomData,
};

match request.acceptable_atomic_statement(&Some(rules)) {
match request.acceptable_atomic_statement(Some(rules).as_ref()) {
Ok(r) => r,
Err(err) => return StringResult::from(err).to_jstring(&env),
};
Expand Down

0 comments on commit e8ef295

Please sign in to comment.