Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Regenerate XDR with new generator version #672

Merged
merged 4 commits into from
Aug 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ XDR_FILES_NEXT= \
Stellar-contract-config-setting.x
XDR_FILES_LOCAL_NEXT=$(addprefix xdr/next/,$(XDR_FILES_NEXT))

XDRGEN_COMMIT=master
XDRGEN_COMMIT=8d303b1
DTSXDR_COMMIT=master

all: generate
Expand Down
8 changes: 4 additions & 4 deletions src/generated/next_generated.js
Original file line number Diff line number Diff line change
Expand Up @@ -2100,9 +2100,9 @@ var types = XDR.config((xdr) => {
// TimePoint closeTime; // network close time
//
// // upgrades to apply to the previous ledger (usually empty)
// // this is a vector of encoded 'LedgerUpgrade' so that nodes can drop
// // this is a vector of encoded "LedgerUpgrade" so that nodes can drop
// // unknown steps during consensus if needed.
// // see notes below on 'LedgerUpgrade' for more detail
// // see notes below on "LedgerUpgrade" for more detail
// // max size is dictated by number of upgrade types (+ room for future)
// UpgradeType upgrades<6>;
//
Expand Down Expand Up @@ -9089,7 +9089,7 @@ var types = XDR.config((xdr) => {
["scSpecTypeResult", "result"],
["scSpecTypeVec", "vec"],
["scSpecTypeMap", "map"],
["scSpecTypeSet", "set"],
["scSpecTypeSet", "set_"],
["scSpecTypeTuple", "tuple"],
["scSpecTypeBytesN", "bytesN"],
["scSpecTypeUdt", "udt"],
Expand All @@ -9099,7 +9099,7 @@ var types = XDR.config((xdr) => {
result: xdr.lookup("ScSpecTypeResult"),
vec: xdr.lookup("ScSpecTypeVec"),
map: xdr.lookup("ScSpecTypeMap"),
set: xdr.lookup("ScSpecTypeSet"),
set_: xdr.lookup("ScSpecTypeSet"),
tuple: xdr.lookup("ScSpecTypeTuple"),
bytesN: xdr.lookup("ScSpecTypeBytesN"),
udt: xdr.lookup("ScSpecTypeUdt"),
Expand Down
Loading
Loading