-
Notifications
You must be signed in to change notification settings - Fork 29
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
Feature/wallet token supply change #1272
Conversation
e0f449f
to
29f1a3c
Compare
b2c63c7
to
b085273
Compare
Does this fix #1237? |
Yes, updated the description. |
self.broadcast_to_mempool(tx).await | ||
} | ||
|
||
pub async fn lock_tokens(&mut self, token_id: TokenId) -> Result<(), ControllerError<T>> { |
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.
Please call this function and all its dependents "lock_tokens_supply". The phrase "lock_tokens" is very ambiguous.
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.
renamed
PerThousand::from_decimal_str(value_str).ok_or(WalletCliError::InvalidInput(format!( | ||
"Failed to parse {variable_name} the decimal that must be in the range [0.001,1.000] or [0.1%,100%]", |
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.
"Failed to parse {variable_name}. The decimal must be in the range..."
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.
fixed
self.generate_block() | ||
assert_in("Success", await wallet.sync()) | ||
|
||
tokens_to_mint = 10000 |
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.
Can we randomize this test? I'm OK with making another copy that would do the randomization.
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.
specified the --randomseed for the functional tests, and randomized 10 mints/unimts with random amounts
Looking good, besides the comments! |
85de415
to
2456eb9
Compare
btw there is one more piece of commented code in the |
3d39e5f
to
734e2de
Compare
9768935
to
6cd5f00
Compare
734e2de
to
a6fe57e
Compare
return await self._write_command(f"unminttokens {token_id} {amount}\n") | ||
|
||
async def lock_token_suply(self, token_id: str) -> str: | ||
return await self._write_command(f"locktokensuply {token_id}\n") |
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.
supply
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.
fixed
wallet/src/wallet/tests.rs
Outdated
#[case(Seed::from_entropy())] | ||
fn check_tokens_v0_are_ignored(#[case] seed: Seed) { | ||
let mut rng = make_seedable_rng(seed); | ||
let chain_config = Arc::new(create_mainnet()); |
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.
Is there a reason why we're using mainnet here? Just understand that this config can change in the future when creating mainnet.
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.
no particular reason, I will change it
minor things I mentioned, all good! Let's merge this today. |
a6fe57e
to
ee55e7e
Compare
lock_tokens -> lock_token_supply specify a randomseed argument for the functional tests randomize token supply change test
- remove unused amount_to_issue argument for the new issue totkens command - rename TokenTotalSupplyState to TokenCurrentSupplyState
602b4aa
to
8d0d1b3
Compare
Add support for the v1 tokens in the Wallet
closes #1237