Implement ABI fix in the compiler trait impl

This commit is contained in:
Omar Abdulla
2025-07-14 20:31:06 +03:00
parent 43064022e8
commit 5f86ade1e0
5 changed files with 71 additions and 72 deletions
+1 -1
View File
@@ -340,7 +340,7 @@ mod tests {
type T = (bool,);
let decoded: T = T::abi_decode(&encoded.0[4..]).unwrap();
assert_eq!(decoded.0, true);
assert!(decoded.0);
}
#[test]