-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cactus-core-api): add Ethereum ledger type
Peter's change: Added the missing `ETHEREUM` constant to the leger type that the static consortium plugin has built in to it. This was necessary because adding it only to the core-api broke the build. The two types (since they are duplicates of each other) must be updated in tandem otherwise the code won't compile (which is a good thing because it is an example if when the compiler saves us from mistakes like this that would otherwise stay hidden until much later and only come out as runtime errors) Authored-by: Bruno Mateus Co-authored-by: Peter Somogyvari <peter.somogyvari@accenture.com> Signed-off-by: Rafael Belchior <rafael.belchior@tecnico.ulisboa.pt> Signed-off-by: Peter Somogyvari <peter.somogyvari@accenture.com>
- Loading branch information
Showing
10 changed files
with
17 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -131,6 +131,7 @@ | |
"BESU_2X", | ||
"BURROW_0X", | ||
"CORDA_4X", | ||
"ETHEREUM", | ||
"FABRIC_2", | ||
"SAWTOOTH_1X" | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -131,6 +131,7 @@ | |
"BESU_2X", | ||
"BURROW_0X", | ||
"CORDA_4X", | ||
"ETHEREUM", | ||
"FABRIC_2", | ||
"SAWTOOTH_1X" | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -305,6 +305,7 @@ components: | |
- BESU_2X | ||
- BURROW_0X | ||
- CORDA_4X | ||
- ETHEREUM | ||
- FABRIC_2 | ||
- SAWTOOTH_1X | ||
type: string | ||
|
2 changes: 2 additions & 0 deletions
2
packages/cactus-core-api/src/main/go/generated/openapi/go-client/model_ledger_type.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -186,6 +186,7 @@ | |
"BESU_2X", | ||
"BURROW_0X", | ||
"CORDA_4X", | ||
"ETHEREUM", | ||
"FABRIC_2", | ||
"SAWTOOTH_1X" | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -186,6 +186,7 @@ | |
"BESU_2X", | ||
"BURROW_0X", | ||
"CORDA_4X", | ||
"ETHEREUM", | ||
"FABRIC_2", | ||
"SAWTOOTH_1X" | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters