mirror of
https://github.com/haveno-dex/haveno-ts.git
synced 2025-07-26 00:05:39 -04:00
update dist
This commit is contained in:
parent
2473af3c50
commit
9e8122f660
3 changed files with 36 additions and 2 deletions
4
dist/protobuf/pb_pb.d.ts
vendored
4
dist/protobuf/pb_pb.d.ts
vendored
|
@ -953,6 +953,9 @@ export class AckMessage extends jspb.Message {
|
||||||
getErrorMessage(): string;
|
getErrorMessage(): string;
|
||||||
setErrorMessage(value: string): AckMessage;
|
setErrorMessage(value: string): AckMessage;
|
||||||
|
|
||||||
|
getUpdatedMultisigHex(): string;
|
||||||
|
setUpdatedMultisigHex(value: string): AckMessage;
|
||||||
|
|
||||||
serializeBinary(): Uint8Array;
|
serializeBinary(): Uint8Array;
|
||||||
toObject(includeInstance?: boolean): AckMessage.AsObject;
|
toObject(includeInstance?: boolean): AckMessage.AsObject;
|
||||||
static toObject(includeInstance: boolean, msg: AckMessage): AckMessage.AsObject;
|
static toObject(includeInstance: boolean, msg: AckMessage): AckMessage.AsObject;
|
||||||
|
@ -971,6 +974,7 @@ export namespace AckMessage {
|
||||||
sourceId: string,
|
sourceId: string,
|
||||||
success: boolean,
|
success: boolean,
|
||||||
errorMessage: string,
|
errorMessage: string,
|
||||||
|
updatedMultisigHex: string,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
32
dist/protobuf/pb_pb.js
vendored
32
dist/protobuf/pb_pb.js
vendored
|
@ -11314,7 +11314,8 @@ sourceMsgClassName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
||||||
sourceUid: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
sourceUid: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
||||||
sourceId: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
sourceId: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
||||||
success: jspb.Message.getBooleanFieldWithDefault(msg, 7, false),
|
success: jspb.Message.getBooleanFieldWithDefault(msg, 7, false),
|
||||||
errorMessage: jspb.Message.getFieldWithDefault(msg, 8, "")
|
errorMessage: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
||||||
|
updatedMultisigHex: jspb.Message.getFieldWithDefault(msg, 9, "")
|
||||||
};
|
};
|
||||||
|
|
||||||
if (includeInstance) {
|
if (includeInstance) {
|
||||||
|
@ -11384,6 +11385,10 @@ proto.io.haveno.protobuffer.AckMessage.deserializeBinaryFromReader = function(ms
|
||||||
var value = /** @type {string} */ (reader.readString());
|
var value = /** @type {string} */ (reader.readString());
|
||||||
msg.setErrorMessage(value);
|
msg.setErrorMessage(value);
|
||||||
break;
|
break;
|
||||||
|
case 9:
|
||||||
|
var value = /** @type {string} */ (reader.readString());
|
||||||
|
msg.setUpdatedMultisigHex(value);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
reader.skipField();
|
reader.skipField();
|
||||||
break;
|
break;
|
||||||
|
@ -11470,6 +11475,13 @@ proto.io.haveno.protobuffer.AckMessage.serializeBinaryToWriter = function(messag
|
||||||
f
|
f
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
f = message.getUpdatedMultisigHex();
|
||||||
|
if (f.length > 0) {
|
||||||
|
writer.writeString(
|
||||||
|
9,
|
||||||
|
f
|
||||||
|
);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -11636,6 +11648,24 @@ proto.io.haveno.protobuffer.AckMessage.prototype.setErrorMessage = function(valu
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* optional string updated_multisig_hex = 9;
|
||||||
|
* @return {string}
|
||||||
|
*/
|
||||||
|
proto.io.haveno.protobuffer.AckMessage.prototype.getUpdatedMultisigHex = function() {
|
||||||
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {string} value
|
||||||
|
* @return {!proto.io.haveno.protobuffer.AckMessage} returns this
|
||||||
|
*/
|
||||||
|
proto.io.haveno.protobuffer.AckMessage.prototype.setUpdatedMultisigHex = function(value) {
|
||||||
|
return jspb.Message.setProto3StringField(this, 9, value);
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
2
dist/protobuf/pb_pb.js.map
vendored
2
dist/protobuf/pb_pb.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue