forked from Stellar-Teye/Teye-Contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheck_errors.txt
More file actions
60 lines (55 loc) · 2.38 KB
/
check_errors.txt
File metadata and controls
60 lines (55 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Checking compliance v1.2.2 (C:\Users\nwaug\Desktop\Blockchain\DripsWave\Teye-Contracts\contracts\compliance)
warning: trait `VisionRecordsInterface` is never used
--> contracts\state_channel\src\settlement.rs:27:7
|
27 | trait VisionRecordsInterface {
| ^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
warning: `teye-state-channel` (lib) generated 1 warning
Checking zk_prover v0.1.0 (C:\Users\nwaug\Desktop\Blockchain\DripsWave\Teye-Contracts\sdk\zk_prover)
Checking key_manager v1.2.2 (C:\Users\nwaug\Desktop\Blockchain\DripsWave\Teye-Contracts\contracts\key_manager)
Checking vault v1.2.2 (C:\Users\nwaug\Desktop\Blockchain\DripsWave\Teye-Contracts\contracts\vault)
error[E0432]: unresolved imports `zk_verifier::AccessRequest`, `zk_verifier::ZkAccessHelper`
--> sdk\zk_prover\src\lib.rs:7:19
|
7 | use zk_verifier::{AccessRequest, ZkAccessHelper};
| ^^^^^^^^^^^^^ ^^^^^^^^^^^^^^ no `ZkAccessHelper` in the root
| |
| no `AccessRequest` in the root
error[E0425]: cannot find type `AuditEntry` in this scope
--> contracts\compliance\src\audit.rs:277:22
|
277 | pub entries: Vec<AuditEntry>,
| ^^^^^^^^^^ not found in this scope
|
help: consider importing this struct
|
36 + use common::AuditEntry;
|
error[E0422]: cannot find struct, variant or union type `AuditEntry` in this scope
--> contracts\compliance\src\audit.rs:292:25
|
292 | let mut entry = AuditEntry {
| ^^^^^^^^^^ not found in this scope
|
help: consider importing this struct
|
36 + use common::AuditEntry;
|
error[E0425]: cannot find type `AuditEntry` in this scope
--> contracts\compliance\src\audit.rs:308:30
|
308 | pub fn query(&self) -> &[AuditEntry] {
| ^^^^^^^^^^ not found in this scope
|
help: consider importing this struct
|
36 + use common::AuditEntry;
|
For more information about this error, try `rustc --explain E0432`.
error: could not compile `zk_prover` (lib) due to 1 previous error
warning: build failed, waiting for other jobs to finish...
Some errors have detailed explanations: E0422, E0425.
For more information about an error, try `rustc --explain E0422`.
error: could not compile `compliance` (lib) due to 3 previous errors