Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
447e0a3
Ban direct indexing and enable CI to detect it
keithtensor Apr 26, 2024
f6018b3
Merge remote-tracking branch 'origin/development' into ban-direct-ind…
keithtensor Apr 26, 2024
261b980
Remove direct indexing in registry pallet
keithtensor Apr 26, 2024
dc26ca2
Fix migration order, comment on_runtime_upgrade
gregzaitsev Apr 28, 2024
4c7c0a5
Remove unwraps in most of the codebase
keithtensor Apr 29, 2024
82aef26
Change registry pallet to use fungible traits
keithtensor Apr 29, 2024
2ecdb76
Fix compilation error
keithtensor Apr 29, 2024
2d340e7
Merge remote-tracking branch 'origin/development' into ban-direct-ind…
keithtensor Apr 29, 2024
9032f95
cargo fmt
keithtensor Apr 29, 2024
16bbbdb
Use set_balance instead of make_free_balance_be
keithtensor Apr 29, 2024
fdc4732
Commit missing merged files
keithtensor Apr 29, 2024
fd1dbe4
Add increase_take and decrease_take extrinsics, rate limiting, and tests
gregzaitsev Apr 29, 2024
0ef1d2b
Format with cargo fmt
gregzaitsev Apr 29, 2024
d509dd8
cargo fmt
keithtensor Apr 30, 2024
f61f92e
Require fungible::Mutate on Currency item for benchmarking
keithtensor Apr 30, 2024
002633d
Merge pull request #372 from opentensor/fix/migration_order
distributedstatemachine Apr 30, 2024
35dc836
Merge pull request #369 from opentensor/ban-direct-indexing
sam0x17 Apr 30, 2024
5793ed0
Added badblocks field
shibshib Apr 30, 2024
a415323
Remove badblocks
shibshib Apr 30, 2024
4c1c033
fix: fix slow proxy test
camfairchild May 1, 2024
a322703
Merge pull request #386 from opentensor/fix/fix-slow-proxy-test
open-junius May 1, 2024
5cd3e65
Add test for setting zero take
gregzaitsev May 1, 2024
a99c55f
fix test case
open-junius May 1, 2024
3db6b62
Fix the delegate take function in zero delegate take test
gregzaitsev May 1, 2024
19d9078
Change max take to 18% in tests
gregzaitsev May 1, 2024
b733877
Fix tests that used 50% take
gregzaitsev May 1, 2024
4e8d9ca
Add minimum take boundary
gztensor May 1, 2024
c00ff02
Merge pull request #380 from opentensor/feat/change-delegate-takes-dev
sam0x17 May 2, 2024
6be147d
Change minimum take to 18%
gztensor May 6, 2024
9682e70
Merge pull request #399 from opentensor/feat/set-narrow-take-limit-bo…
sam0x17 May 7, 2024
d9217e9
fix: bump testnet spec version
orriin May 10, 2024
f6169aa
Merge pull request #407 from opentensor/fix/bump-testnet-spec-version
sam0x17 May 13, 2024
88cd41e
Merge remote-tracking branch 'origin/testnet' into try-finney-deploy-…
sam0x17 May 20, 2024
1048858
Merge remote-tracking branch 'origin/testnet' into try-finney-deploy-…
sam0x17 May 20, 2024
083f3d2
Merge branch 'try-finney-deploy-5-20-2024' of github.com:opentensor/s…
May 21, 2024
54578ab
chore: bump finney spec version
May 21, 2024
3ddd88a
chore: bump spec version
May 21, 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
22 changes: 0 additions & 22 deletions .github/PULL_REQUEST_TEMPLATE/add-feature.md

This file was deleted.

21 changes: 0 additions & 21 deletions .github/PULL_REQUEST_TEMPLATE/fix-bug.md

This file was deleted.

47 changes: 47 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
## Description
<!--
Please provide a brief description of the changes introduced by this pull request.
-->


## Related Issue(s)

- Closes #[issue number]

## Type of Change
<!--
Please check the relevant options:
-->

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] Documentation update
- [ ] Other (please describe):

## Breaking Change

If this PR introduces a breaking change, please provide a detailed description of the impact and the migration path for existing applications.

## Checklist

<!--
Please ensure the following tasks are completed before requesting a review:
-->

- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have run `cargo fmt` and `cargo clippy` to ensure my code is formatted and linted correctly
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged and published in downstream modules

## Screenshots (if applicable)

Please include any relevant screenshots or GIFs that demonstrate the changes made.

## Additional Notes

Please provide any additional information or context that may be helpful for reviewers.
Loading