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 c735d9e7b1
commit f70ce96e7d

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)]