From 0c8a01f16aef71cdc3ad4752fb33662700fce6cd Mon Sep 17 00:00:00 2001 From: Julian Strobl Date: Fri, 6 Oct 2023 11:53:56 +0200 Subject: [PATCH 1/2] Fix generated files Signed-off-by: Julian Strobl --- docs/static/openapi.yml | 6 +++--- go.mod | 1 - go.sum | 2 -- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/docs/static/openapi.yml b/docs/static/openapi.yml index 6c4eace..b0f20bb 100644 --- a/docs/static/openapi.yml +++ b/docs/static/openapi.yml @@ -46734,7 +46734,7 @@ paths: mintRequests: type: object properties: - mintRequest: + Requests: type: array items: type: object @@ -75802,7 +75802,7 @@ definitions: planetmintgo.dao.MintRequests: type: object properties: - mintRequest: + Requests: type: array items: type: object @@ -75838,7 +75838,7 @@ definitions: mintRequests: type: object properties: - mintRequest: + Requests: type: array items: type: object diff --git a/go.mod b/go.mod index 02051db..2280c07 100644 --- a/go.mod +++ b/go.mod @@ -20,7 +20,6 @@ require ( github.com/gorilla/mux v1.8.0 github.com/grpc-ecosystem/grpc-gateway v1.16.0 github.com/grpc-ecosystem/grpc-gateway/v2 v2.15.2 - github.com/hypebeast/go-osc v0.0.0-20220308234300-cec5a8a1e5f5 github.com/spf13/cast v1.5.0 github.com/spf13/cobra v1.6.1 github.com/spf13/pflag v1.0.5 diff --git a/go.sum b/go.sum index 7395927..82b2555 100644 --- a/go.sum +++ b/go.sum @@ -677,8 +677,6 @@ github.com/huandu/go-assert v1.1.5/go.mod h1:yOLvuqZwmcHIC5rIzrBhT7D3Q9c3GFnd0Jr github.com/huandu/skiplist v1.2.0 h1:gox56QD77HzSC0w+Ws3MH3iie755GBJU1OER3h5VsYw= github.com/huandu/skiplist v1.2.0/go.mod h1:7v3iFjLcSAzO4fN5B8dvebvo/qsfumiLiDXMrPiHF9w= github.com/hudl/fargo v1.3.0/go.mod h1:y3CKSmjA+wD2gak7sUSXTAoopbhU08POFhmITJgmKTg= -github.com/hypebeast/go-osc v0.0.0-20220308234300-cec5a8a1e5f5 h1:fqwINudmUrvGCuw+e3tedZ2UJ0hklSw6t8UPomctKyQ= -github.com/hypebeast/go-osc v0.0.0-20220308234300-cec5a8a1e5f5/go.mod h1:lqMjoCs0y0GoRRujSPZRBaGb4c5ER6TfkFKSClxkMbY= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/improbable-eng/grpc-web v0.15.0 h1:BN+7z6uNXZ1tQGcNAuaU1YjsLTApzkjt2tzCixLaUPQ= From ec77832ca1dc2e8ac4f3ad9e852f237c7a7c8156 Mon Sep 17 00:00:00 2001 From: Julian Strobl Date: Fri, 6 Oct 2023 11:54:24 +0200 Subject: [PATCH 2/2] Fix missing quotes Signed-off-by: Julian Strobl --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index 5c0122c..208a804 100644 --- a/config/config.go +++ b/config/config.go @@ -23,7 +23,7 @@ pop-epochs = {{ .PlmntConfig.PoPEpochs }} issuance-endpoint = "{{ .PlmntConfig.IssuanceEndpoint }}" issuance-port = {{ .PlmntConfig.IssuancePort }} mint-address = "{{ .PlmntConfig.MintAddress }}" -issuance-service-dir = {{ .PlmntConfig.IssuanceServiceDir }} +issuance-service-dir = "{{ .PlmntConfig.IssuanceServiceDir }}" ` // Config defines Planetmint's top level configuration