Skip to content

Commit

Permalink
rename more files
Browse files Browse the repository at this point in the history
  • Loading branch information
v9n committed Dec 27, 2024
1 parent e7f17be commit d21ec36
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/static_codegen/avs_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -7172,7 +7172,7 @@ proto.aggregator.ListWalletReq.prototype.toObject = function(opt_includeInstance
*/
proto.aggregator.ListWalletReq.toObject = function(includeInstance, msg) {
var f, obj = {
factory: jspb.Message.getFieldWithDefault(msg, 1, ""),
factoryAddress: jspb.Message.getFieldWithDefault(msg, 1, ""),
salt: jspb.Message.getFieldWithDefault(msg, 2, "")
};

Expand Down Expand Up @@ -7212,7 +7212,7 @@ proto.aggregator.ListWalletReq.deserializeBinaryFromReader = function(msg, reade
switch (field) {
case 1:
var value = /** @type {string} */ (reader.readString());
msg.setFactory(value);
msg.setFactoryAddress(value);
break;
case 2:
var value = /** @type {string} */ (reader.readString());
Expand Down Expand Up @@ -7247,7 +7247,7 @@ proto.aggregator.ListWalletReq.prototype.serializeBinary = function() {
*/
proto.aggregator.ListWalletReq.serializeBinaryToWriter = function(message, writer) {
var f = undefined;
f = message.getFactory();
f = message.getFactoryAddress();
if (f.length > 0) {
writer.writeString(
1,
Expand All @@ -7265,10 +7265,10 @@ proto.aggregator.ListWalletReq.serializeBinaryToWriter = function(message, write


/**
* optional string factory = 1;
* optional string factory_address = 1;
* @return {string}
*/
proto.aggregator.ListWalletReq.prototype.getFactory = function() {
proto.aggregator.ListWalletReq.prototype.getFactoryAddress = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
};

Expand All @@ -7277,7 +7277,7 @@ proto.aggregator.ListWalletReq.prototype.getFactory = function() {
* @param {string} value
* @return {!proto.aggregator.ListWalletReq} returns this
*/
proto.aggregator.ListWalletReq.prototype.setFactory = function(value) {
proto.aggregator.ListWalletReq.prototype.setFactoryAddress = function(value) {
return jspb.Message.setProto3StringField(this, 1, value);
};

Expand Down

0 comments on commit d21ec36

Please sign in to comment.