mirror of
https://github.com/fluencelabs/lazy-snark
synced 2025-04-25 06:52:14 +00:00
13 lines
134 B
Solidity
13 lines
134 B
Solidity
|
pragma solidity ^0.5.4;
|
||
|
|
||
|
interface Structs {
|
||
|
struct Data {
|
||
|
uint x;
|
||
|
}
|
||
|
|
||
|
struct Proof {
|
||
|
uint x;
|
||
|
}
|
||
|
|
||
|
}
|