-
Notifications
You must be signed in to change notification settings - Fork 44
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
chore: Update to miden-base's next #498
Conversation
"{{ endpoint: \"{}\", asset_amount_options: {:?}, token_symbol: {}, decimals: {}, max_supply: {} }}", | ||
self.endpoint, self.asset_amount_options, self.token_symbol, self.decimals, self.max_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.
The database path was used for the client's database so I opted to remove it as it was not needed anymore.
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.
This is because we no longer rely on the client here, right?
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.
Correct!
@@ -60,7 +61,7 @@ impl GenesisState { | |||
Smt::default().root(), | |||
*EmptySubtreeRoots::entry(BLOCK_NOTE_TREE_DEPTH, 0), | |||
Digest::default(), | |||
Digest::default(), |
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.
Faucet was failing to execute correctly due to this being an invalid kernel root.
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.
Looks good! Thank you! I left one question inline.
"{{ endpoint: \"{}\", asset_amount_options: {:?}, token_symbol: {}, decimals: {}, max_supply: {} }}", | ||
self.endpoint, self.asset_amount_options, self.token_symbol, self.decimals, self.max_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.
This is because we no longer rely on the client here, right?
Follows 0xPolygonMiden/miden-base#875