Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
0675a45
*WIP* add `delegate_dependency` env api calls
ascjones Jan 26, 2024
6d491b4
Merge branch 'master' into aj/delegate-dependency
ascjones Feb 5, 2024
8a0d4b5
Merge branch 'master' into aj/delegate-dependency
ascjones Feb 7, 2024
37370be
Merge branch 'master' into aj/delegate-dependency
ascjones Feb 8, 2024
f441c6a
Merge branch 'master' into aj/delegate-dependency
ascjones Feb 8, 2024
a4bb790
Updated return types and moved docs
ascjones Feb 8, 2024
64afb16
Merge branch 'master' into aj/delegate-dependency
ascjones Feb 9, 2024
c0084dd
unused imports
ascjones Feb 9, 2024
9fc6820
Lazy delegate to
ascjones Feb 9, 2024
5086e0a
Allow deprecated
ascjones Feb 9, 2024
6e358da
Initialise delegate_to hash in constructor
ascjones Feb 9, 2024
b5bede6
Test example, adding `remove_code` extrinsic to e2e
ascjones Feb 9, 2024
d864abb
Docs
ascjones Feb 9, 2024
60b7662
CHANGELOG.md
ascjones Feb 9, 2024
e928284
drink unimplemented
ascjones Feb 9, 2024
82fcc91
Send it
ascjones Feb 9, 2024
e1f7a9f
Fix comment
ascjones Feb 9, 2024
be62c50
Fix comment
ascjones Feb 9, 2024
56a3bbf
Fix comment
ascjones Feb 9, 2024
8b21039
Fix comment
ascjones Feb 9, 2024
c72676d
Fix comment
ascjones Feb 9, 2024
864dcf4
Merge branch 'master' into aj/delegate-dependency
ascjones Feb 19, 2024
785db39
Update integration-tests/upgradeable-contracts/delegator/delegatee2/C…
ascjones Feb 21, 2024
82d720e
Update crates/e2e/src/backend.rs
ascjones Feb 21, 2024
22b01d0
update to `lock/unlock` host fns
ascjones Feb 22, 2024
f0c99e8
#[allow(deprecated)] for _v1 calls
ascjones Feb 22, 2024
4d975b8
Add link to lock up deposit
ascjones Feb 22, 2024
430a831
doc comment as per review
ascjones Feb 22, 2024
1442530
Merge branch 'master' into aj/delegate-dependency
ascjones Feb 23, 2024
eb36349
Update crates/e2e/src/backend.rs
ascjones Feb 23, 2024
c5581dc
Update crates/e2e/src/backend.rs
ascjones Feb 23, 2024
e9b39c9
Update crates/env/src/api.rs
ascjones Feb 23, 2024
d20cd52
Apply suggestions from code review
ascjones Feb 23, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Send it
  • Loading branch information
ascjones committed Feb 9, 2024
commit 82fcc91fe2fc1b4d9dd274fe501588410a9c27fc
4 changes: 2 additions & 2 deletions crates/e2e/src/drink_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ where
#[async_trait]
impl<
AccountId: Clone + Send + Sync + From<[u8; 32]> + AsRef<[u8; 32]>,
Hash: Copy + From<[u8; 32]>,
Hash: Copy + Send + From<[u8; 32]>,
Runtime: RuntimeT + pallet_balances::Config + pallet_contracts::Config,
E: Environment<
AccountId = AccountId,
Expand Down Expand Up @@ -427,7 +427,7 @@ where

impl<
AccountId: Clone + Send + Sync + From<[u8; 32]> + AsRef<[u8; 32]>,
Hash: Copy + From<[u8; 32]>,
Hash: Copy + Send + From<[u8; 32]>,
Runtime: RuntimeT + pallet_balances::Config + pallet_contracts::Config,
E: Environment<
AccountId = AccountId,
Expand Down