Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
cd2efcb
test: first unit tests passing after refactor
ntn-x2 Aug 2, 2021
99ba362
feat: refactor complete
ntn-x2 Aug 3, 2021
ce9ade2
feat: revert DID creation to old version and update test cases
ntn-x2 Aug 3, 2021
7752137
fix: update test cases and benchmarks
ntn-x2 Aug 4, 2021
92cc170
wip: comment out current weights
ntn-x2 Aug 4, 2021
64dc85b
feat: delegation pallet storage refactor (#226)
ntn-x2 Aug 3, 2021
92bda81
fix: refine code after checking the changes
ntn-x2 Aug 4, 2021
cc52a6c
chore: update comments to reflect latest changes
ntn-x2 Aug 4, 2021
fd9de55
bench: update benchmarks
ntn-x2 Aug 4, 2021
939c9db
chore: fmt
ntn-x2 Aug 4, 2021
9360ec3
bench: add peregrine benchmarks
ntn-x2 Aug 4, 2021
c084dd7
fix: add new DID weights to peregrine runtime
ntn-x2 Aug 4, 2021
2dc0e97
Merge branch 'develop' into aa-did-pallet-origin
ntn-x2 Aug 4, 2021
0930911
chore: bump runtime version
ntn-x2 Aug 4, 2021
d415ee1
merge develop branch
ntn-x2 Aug 4, 2021
a6d0946
chore: fmt + clippy
ntn-x2 Aug 4, 2021
ddab01b
chore: clippy
ntn-x2 Aug 4, 2021
d4f9462
fix: test errors
ntn-x2 Aug 4, 2021
64f36ec
Merge remote-tracking branch 'origin/develop' into aa-did-pallet-origin
ntn-x2 Aug 4, 2021
25ba666
fix: typo in docs
ntn-x2 Aug 4, 2021
677a827
chore: remove useless elements in unit tests
ntn-x2 Aug 4, 2021
d8bddbf
feat: remove TryFrom for DidDetails
ntn-x2 Aug 4, 2021
87f68d6
chore: fmt
ntn-x2 Aug 4, 2021
9b1df9f
Merge remote-tracking branch 'origin/develop' into aa-did-pallet-origin
ntn-x2 Aug 4, 2021
391260f
fix: replace tuple with two parameters in from_creation_details
ntn-x2 Aug 4, 2021
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
chore: clippy
  • Loading branch information
ntn-x2 committed Aug 4, 2021
commit ddab01b1b1ccde12f53d339c31c4e6cfe31bc55a
4 changes: 2 additions & 2 deletions pallets/did/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ fn check_successful_complete_update() {
details.new_endpoint_url = Some(new_url);

let mut ext = ExtBuilder::default()
.with_dids(vec![(alice_did.clone(), old_did_details.clone())])
.with_dids(vec![(alice_did.clone(), old_did_details)])
.build(None);

let new_block_number: TestBlockNumber = 1;
Expand Down Expand Up @@ -580,7 +580,7 @@ fn check_successful_keys_multiuse_update() {
let _signature = auth_key.sign(details.encode().as_ref());

let mut ext = ExtBuilder::default()
.with_dids(vec![(alice_did.clone(), old_did_details.clone())])
.with_dids(vec![(alice_did.clone(), old_did_details)])
.build(None);

let new_block_number: TestBlockNumber = 1;
Expand Down