-
Notifications
You must be signed in to change notification settings - Fork 218
Feat/subtoken enable #1512
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/subtoken enable #1512
Conversation
evm-tests/src/subtensor.ts
Outdated
} | ||
|
||
export async function setSubtokenEnable(api: TypedApi<typeof devnet>, netuid: number, subtokenEnable: boolean) { | ||
const singer = getAliceSigner() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const singer = getAliceSigner() | |
const signer = getAliceSigner() |
evm-tests/src/subtensor.ts
Outdated
} | ||
await new Promise((resolve) => setTimeout(resolve, 2000)); | ||
|
||
const singer = getSignerFromKeypair(keypair) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const singer = getSignerFromKeypair(keypair) | |
const signer = getSignerFromKeypair(keypair) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will fix it, thanks!
Only small nits, can ignore if you want 👍 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Description
Related Issue(s)
Type of Change
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
cargo fmt
andcargo clippy
to ensure my code is formatted and linted correctlyScreenshots (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.