-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bde1287
commit 2639236
Showing
7 changed files
with
716 additions
and
745 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 |
---|---|---|
|
@@ -119,11 +119,11 @@ Transition vesper lexicon=types+commitments | |
let tt = sys.type_tree("RGB.Transition").unwrap(); | ||
writeln!(file, "{tt}").unwrap(); | ||
|
||
let mut file = fs::File::create(format!("{dir}/AnchoredBundle.vesper")).unwrap(); | ||
let mut file = fs::File::create(format!("{dir}/TransitionBundle.vesper")).unwrap(); | ||
writeln!( | ||
file, | ||
"{{- | ||
Description: RGB Anchored Bundle | ||
Description: RGB Transition Bundle | ||
Author: Dr Maxim Orlovsky <[email protected]> | ||
Copyright (C) 2024 LNP/BP Standards Association. All rights reserved. | ||
License: Apache-2.0 | ||
|
@@ -135,8 +135,8 @@ Bundles vesper lexicon=types+commitments | |
.unwrap(); | ||
let layout = TransitionBundle::commitment_layout(); | ||
writeln!(file, "{layout}").unwrap(); | ||
let tt = sys.type_tree("RGB.InputMap").unwrap(); | ||
let tt = sys.type_tree("RGB.XChainAnchorSet").unwrap(); | ||
writeln!(file, "{tt}").unwrap(); | ||
let tt = sys.type_tree("RGB.AnchoredBundle").unwrap(); | ||
let tt = sys.type_tree("RGB.TransitionBundle").unwrap(); | ||
writeln!(file, "{tt}").unwrap(); | ||
} |
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
Oops, something went wrong.