feat(aquavm-air)!: signature checking (#607)

This commit is contained in:
Ivan Boldyrev
2023-10-13 23:19:02 +04:00
committed by GitHub
parent b6c4eaaddc
commit 8a07613027
136 changed files with 7177 additions and 5398 deletions

View File

@ -92,6 +92,10 @@ impl AirRunner for WasmAirRunner {
particle_id,
)?)
}
fn get_current_peer_id(&self) -> &str {
&self.current_peer_id
}
}
/// WASM runner that runs release build form benchmarking.
@ -147,4 +151,8 @@ impl AirRunner for ReleaseWasmAirRunner {
particle_id,
)?)
}
fn get_current_peer_id(&self) -> &str {
&self.current_peer_id
}
}