如何找到结构的keccak256 / sha256?

时间:2018-03-03 23:40:24

标签: solidity

结果是sha256(a)!= sha256(b);

sha256()是如何实现的?

struct B {
    byte x;
}

struct A {
    byte x;
}
byte x = 0x0;
A memory a = A(x = x);
B memory b = B(x = x);

0 个答案:

没有答案