mirror of
https://github.com/logos-blockchain/logos-blockchain-pocs.git
synced 2026-01-05 22:53:10 +00:00
7 lines
118 B
Rust
7 lines
118 B
Rust
|
|
use anyhow::Result;
|
||
|
|
use nomos_core::da::BlobId;
|
||
|
|
|
||
|
|
pub async fn sampling(_blob_id: BlobId) -> Result<()> {
|
||
|
|
Ok(())
|
||
|
|
}
|