Skip to content

Commit

Permalink
Merge pull request #226 from coinbase/nasmithan/add-go-replace-to-readme
Browse files Browse the repository at this point in the history
Added go replace recommendation to README for local development
  • Loading branch information
nasmithan committed Mar 31, 2021
2 parents e8a222e + 57642a4 commit e1fc8df
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -568,6 +568,11 @@ operations should be returned by the Rosetta Data API.
* `make release` to run one last check before opening a PR
* `make compile version=RELEASE_TAG` to generate binaries

If you are developing on both rosetta-cli and rosetta-sdk-go, use [go.mod replace](https://golang.org/ref/mod#go-mod-file-replace) to reference local changes:
```
replace "github.com/coinbase/rosetta-sdk-go" v0.6.8 => "../rosetta-sdk-go"
```

### Helper/Handler
Many of the packages use a `Helper/Handler` interface pattern to acquire
required information or to send events to some client implementation. An example
Expand Down Expand Up @@ -597,4 +602,4 @@ pkg
## License
This project is available open source under the terms of the [Apache 2.0 License](https://opensource.org/licenses/Apache-2.0).

© 2020 Coinbase
© 2021 Coinbase

0 comments on commit e1fc8df

Please sign in to comment.