From 81320c6f2ef9a1c3f4190d9b809e48bd92b6183b Mon Sep 17 00:00:00 2001 From: Stephen Buttolph Date: Tue, 14 Jan 2025 12:59:09 -0500 Subject: [PATCH 1/2] nit --- vms/platformvm/service.md | 1 - 1 file changed, 1 deletion(-) diff --git a/vms/platformvm/service.md b/vms/platformvm/service.md index 7190ed719326..6b2e96c52f82 100644 --- a/vms/platformvm/service.md +++ b/vms/platformvm/service.md @@ -900,7 +900,6 @@ curl -X POST --data '{ "result": { "capacity": 20000, "target": 10000, - "targetPerSecond": 50000, "minPrice": 512, "excessConversionConstant": 1246488515 }, From ef1e51e7fb4c55bbb055da5d8a77962bc4b00f4c Mon Sep 17 00:00:00 2001 From: Stephen Buttolph Date: Tue, 14 Jan 2025 13:02:17 -0500 Subject: [PATCH 2/2] nit --- vms/platformvm/service_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vms/platformvm/service_test.go b/vms/platformvm/service_test.go index 26e281324152..34bd989e8280 100644 --- a/vms/platformvm/service_test.go +++ b/vms/platformvm/service_test.go @@ -1344,7 +1344,7 @@ func TestGetFeeConfig(t *testing.T) { } func FuzzGetFeeState(f *testing.F) { - f.Fuzz(func(t *testing.T, capacity, excess, l1ValidatorExcess uint64) { + f.Fuzz(func(t *testing.T, capacity, excess uint64) { require := require.New(t) service, _ := defaultService(t)