@Override org.stellar.sdk.xdr.Operation.OperationBody toOperationBody() { ChangeTrustOp op = new ChangeTrustOp(); op.setLine(asset.toXdr()); Int64 limit = new Int64(); limit.setInt64(Operation.toXdrAmount(this.limit)); op.setLimit(limit); org.stellar.sdk.xdr.Operation.OperationBody body = new org.stellar.sdk.xdr.Operation.OperationBody(); body.setDiscriminant(OperationType.CHANGE_TRUST); body.setChangeTrustOp(op); return body; }
Builder(ChangeTrustOp op) { asset = Asset.fromXdr(op.getLine()); limit = Operation.fromXdrAmount(op.getLimit().getInt64().longValue()); }