Remove panic handler.

This commit is contained in:
chriseth
2023-04-20 23:07:10 +02:00
parent 680dfd4124
commit 0b7ed5ea72

View File

@@ -1,13 +1,7 @@
#![no_std]
use core::panic::PanicInfo;
use tiny_keccak::{Hasher, Keccak};
#[panic_handler]
fn panic(_info: &PanicInfo) -> ! {
loop {}
}
#[no_mangle]
pub extern "C" fn main() -> ! {
let input = b"Solidity";