nesdie icon indicating copy to clipboard operation
nesdie copied to clipboard

no_std experimental SDK for NEAR Protocol

Results 1 nesdie issues
Sort by recently updated
recently updated
newest added

These code does not work ```rust if let Some(s) = info.payload().downcast_ref::() { env::panic_str(s); } else { env::panic_str("unexpected panic occurred"); } ``` Always execute else branch when custom panic happen. ```rust...