Skip to content

Commit c3a8491

Browse files
authored
fix(pdptool): rename --recordkeeper to --pdp-service-contract in create-proof-set (#571)
fix(pdptool): rename `--recordkeeper` to `--pdp-service-contract` in create-proof-set
1 parent 2766a7c commit c3a8491

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cmd/pdptool/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -853,8 +853,8 @@ var createProofSetCmd = &cli.Command{
853853
Required: true,
854854
},
855855
&cli.StringFlag{
856-
Name: "recordkeeper",
857-
Usage: "Address of the record keeper contract",
856+
Name: "pdp-service-contract",
857+
Usage: "Address of the pdp service contract",
858858
Required: true,
859859
},
860860
&cli.StringFlag{
@@ -871,7 +871,7 @@ var createProofSetCmd = &cli.Command{
871871
Action: func(cctx *cli.Context) error {
872872
serviceURL := cctx.String("service-url")
873873
serviceName := cctx.String("service-name")
874-
recordKeeper := cctx.String("recordkeeper")
874+
recordKeeper := cctx.String("pdp-service-contract")
875875
extraDataHexStr := cctx.String("extra-data")
876876

877877
// Validate extraData hex string and its decoded length

0 commit comments

Comments
 (0)