-
Notifications
You must be signed in to change notification settings - Fork 2
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: Implement tags, refactor exex notification pooler #110
base: dev
Are you sure you want to change the base?
Conversation
let (sender, mut receiver) = tokio::sync::mpsc::channel(buffer_size); | ||
|
||
let thread = SUPERVISOR_RT.spawn(async move { | ||
let irys_provider = UploaderProvider::new(None); |
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.
rename "Irys" references to "arweave"
|
||
let sealed_block_clone = sealed_block.clone(); | ||
|
||
let brotli_borsh = match Self::serialize_block(sealed_block_clone) { |
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.
"borsh_brotli" var name instead of "brolti_borsh" to follow the logic and naming convention of the Arweave tags as well ("Encoding")
@@ -12,5 +12,5 @@ exex-wvm-bigquery.workspace = true | |||
tracing.workspace = true | |||
serde_json.workspace = true |
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.
as I understood it's some kind of Ar provider? maybe name crate like this?
and in future we can just add new specific crates which should be in the node internals itself
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.
just very cautious with packages which have names Ala "common" :D
No description provided.