Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mrz1836 committed Jun 24, 2023
1 parent 06f550e commit eb093ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,16 @@ ifeq ($(REPO_OWNER),)
REPO_OWNER="bitcoinschema"
endif

.PHONY: clean

.PHONY: all
all: ## Runs multiple commands
@$(MAKE) test

.PHONY: clean
clean: ## Remove previous builds and any test cache data
@go clean -cache -testcache -i -r
@test $(DISTRIBUTIONS_DIR)
@if [ -d $(DISTRIBUTIONS_DIR) ]; then rm -r $(DISTRIBUTIONS_DIR); fi

.PHONY: release
release:: ## Runs common.release then runs godocs
@$(MAKE) godocs
2 changes: 1 addition & 1 deletion aip.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func Sign(privateKey string, algorithm Algorithm, message string) (a *Aip, err e
return
}

// SignOpReturnData will append the given data and return an bt.Output
// SignOpReturnData will append the given data and return a bt.Output
func SignOpReturnData(privateKey string, algorithm Algorithm,
data [][]byte) (outData [][]byte, a *Aip, err error) {

Expand Down

0 comments on commit eb093ae

Please sign in to comment.