fix(alonzo): ExUnits steps overflow (#35)

This commit is contained in:
Rinor Hoxha 2022-01-30 23:33:57 +00:00 committed by GitHub
parent 79a33af1bc
commit c251d2fd27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1152,7 +1152,7 @@ pub struct ExUnits {
#[n(0)]
pub mem: u32,
#[n(1)]
pub steps: u32,
pub steps: u64,
}
#[derive(Encode, Decode, Debug, PartialEq)]