Sync proto-signing code generation with nightly-2020-08-10
This commit is contained in:
parent
9cac3f8fc4
commit
a7c38de96e
@ -38,7 +38,7 @@
|
||||
"coverage": "nyc --reporter=text --reporter=lcov yarn test --quiet",
|
||||
"pack-web": "yarn build-or-skip && webpack --mode development --config webpack.web.config.js",
|
||||
"preget-proto": "rm -rf proto",
|
||||
"get-proto": "REF=master ./scripts/get-proto.sh",
|
||||
"get-proto": "REF=9ae17669d6715a84c20d52e10e2232be9f467360 ./scripts/get-proto.sh",
|
||||
"predefine-proto": "./scripts/predefine-proto.sh",
|
||||
"define-proto": "./scripts/define-proto.sh",
|
||||
"postdefine-proto": "prettier --write \"src/generated/codecimpl.*\""
|
||||
|
||||
@ -1398,7 +1398,7 @@ exports.cosmos = $root.cosmos = (function () {
|
||||
}
|
||||
TxBody.prototype.messages = $util.emptyArray;
|
||||
TxBody.prototype.memo = "";
|
||||
TxBody.prototype.timeoutHeight = $util.Long ? $util.Long.fromBits(0, 0, false) : 0;
|
||||
TxBody.prototype.timeoutHeight = $util.Long ? $util.Long.fromBits(0, 0, true) : 0;
|
||||
TxBody.prototype.extensionOptions = $util.emptyArray;
|
||||
TxBody.prototype.nonCriticalExtensionOptions = $util.emptyArray;
|
||||
TxBody.create = function create(properties) {
|
||||
@ -1412,7 +1412,7 @@ exports.cosmos = $root.cosmos = (function () {
|
||||
}
|
||||
if (m.memo != null && Object.hasOwnProperty.call(m, "memo")) w.uint32(18).string(m.memo);
|
||||
if (m.timeoutHeight != null && Object.hasOwnProperty.call(m, "timeoutHeight"))
|
||||
w.uint32(24).int64(m.timeoutHeight);
|
||||
w.uint32(24).uint64(m.timeoutHeight);
|
||||
if (m.extensionOptions != null && m.extensionOptions.length) {
|
||||
for (var i = 0; i < m.extensionOptions.length; ++i)
|
||||
$root.google.protobuf.Any.encode(m.extensionOptions[i], w.uint32(8186).fork()).ldelim();
|
||||
@ -1441,7 +1441,7 @@ exports.cosmos = $root.cosmos = (function () {
|
||||
m.memo = r.string();
|
||||
break;
|
||||
case 3:
|
||||
m.timeoutHeight = r.int64();
|
||||
m.timeoutHeight = r.uint64();
|
||||
break;
|
||||
case 1023:
|
||||
if (!(m.extensionOptions && m.extensionOptions.length)) m.extensionOptions = [];
|
||||
|
||||
Loading…
Reference in New Issue
Block a user