-
Notifications
You must be signed in to change notification settings - Fork 33
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: CSM contracts as a separate module #434
Conversation
'block_number': BlockNumber(int(execution_data['block_number'])), | ||
'block_hash': execution_data['block_hash'], | ||
'block_timestamp': Timestamp(int(execution_data['timestamp'])) | ||
"slot_number": SlotNumber(int(slot_details.message.slot)), |
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.
why "
? looks like we use '
everywhere
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.
953 '
and 651 "
, so no everywhere. And I've chosen the one used by black by default. AFAIR there was an intention to format the "src" someday? cc @F4ever you word, ser?
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.
I try to use everywhere '
.
And yeah, there is a setting in black to format to "
, but no setting to format everything to '
No description provided.