File tree 5 files changed +11
-10
lines changed
datatrails-common-api/assets/v2/assets
5 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 30
30
- name : Generate, Test and Export
31
31
run : |
32
32
# Note: it is by design that we don't use the builder
33
- task all
33
+ task local- all
34
34
35
35
- name : Show exports
36
36
working-directory : exported/
Original file line number Diff line number Diff line change 21
21
22
22
echo "TODO: permissions on accessing our acr prevent this from working"
23
23
exit 0
24
- # task dockerall
24
+ # ensure the all target (which runs everything in docker) works
25
+ # task all
Original file line number Diff line number Diff line change @@ -67,16 +67,16 @@ tasks:
67
67
# ## -------------------------
68
68
# Primary workflow tasks
69
69
# ## -------------------------
70
- dockerall :
70
+ all :
71
71
desc : " do everything necessary after clone (or rebase) in the builder"
72
72
cmds :
73
73
- task : builder-start
74
74
- defer : {task: builder-cleanup}
75
- - task : all
75
+ - task : local- all
76
76
77
- all :
77
+ local- all :
78
78
desc : |
79
- do everything necessary after clone (or rebase)
79
+ do everything necessary after clone (or rebase) (faster as it RUNS ON NATIVE HOST)
80
80
81
81
Note: This requires go and protoc installed on your host. If you are not
82
82
comfortable doing this then use dockerall.
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ option go_package="github.com/datatrails/go-datatrails-common-api-gen/assets/v2/
5
5
enum ConfirmationStatus {
6
6
CONFIRMATION_STATUS_UNSPECIFIED = 0 ;
7
7
PENDING = 1 ; // not yet committed
8
- CONFIRMED = 2 ; // committed
8
+ CONFIRMED = 2 ; // committed. forestrie: "You can easily prove it changed"
9
9
FAILED = 3 ; // permanent failure
10
10
11
11
// Regarding the new statuses for forestrie, See
12
12
// https://github.com/datatrails/epic-8120-scalable-proof-mechanisms/blob/main/event-trust-levels.md
13
13
STORED = 4 ; // forestrie, "its in the db"
14
14
COMMITTED = 5 ; // forestrie, "you can know if its changed"
15
- // CONFIRMED = 6; // forestrie, "You can easily prove it changed"
16
- UNEQUIVOCAL = 7 ; // forestrie, "You easily prove it was publicly available to all"
15
+ // We re-use the constant for CONFIRMED (above)
16
+ UNEQUIVOCAL = 6 ; // forestrie, "You easily prove it was publicly available to all"
17
17
}
18
18
19
19
enum TrackedStatus {
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ message MerkleLogCommitMessage {
30
30
31
31
uint32 log_version = 3 ;
32
32
uint32 log_epoch = 4 ;
33
- MerkleLogCommit committed = 5 ;
33
+ MerkleLogCommit commit = 5 ;
34
34
}
35
35
36
36
You can’t perform that action at this time.
0 commit comments