Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug] Fix reconciler panic on restart #61

Merged
merged 2 commits into from
Jul 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ var versionCmd = &cobra.Command{
Use: "version",
Short: "Print rosetta-cli version",
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("v0.3.0")
fmt.Println("v0.3.1")
},
}
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.13

require (
github.com/AndreasBriese/bbloom v0.0.0-20190825152654-46b345b51c96 // indirect
github.com/coinbase/rosetta-sdk-go v0.3.1
github.com/coinbase/rosetta-sdk-go v0.3.2
github.com/dgraph-io/badger v1.6.1
github.com/fatih/color v1.9.0
github.com/golang/protobuf v1.4.2 // indirect
Expand Down
6 changes: 6 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ github.com/coinbase/rosetta-sdk-go v0.3.1-0.20200715010743-745b911433c9 h1:VFAwd
github.com/coinbase/rosetta-sdk-go v0.3.1-0.20200715010743-745b911433c9/go.mod h1:xTq9qdqHVg6uA87pMUJLE+PqyXFM4PyqOY79J8MCNGA=
github.com/coinbase/rosetta-sdk-go v0.3.1 h1:mPVLW1oAYiTemoUk3K1bre6VRWnjt7CxV0n/ZbTlICw=
github.com/coinbase/rosetta-sdk-go v0.3.1/go.mod h1:xTq9qdqHVg6uA87pMUJLE+PqyXFM4PyqOY79J8MCNGA=
github.com/coinbase/rosetta-sdk-go v0.3.2-0.20200716021643-710419b78a58 h1:xlCHlyMujEzx9ODWdBeNrVOa6dtzd//GWVppkDtY5e0=
github.com/coinbase/rosetta-sdk-go v0.3.2-0.20200716021643-710419b78a58/go.mod h1:xTq9qdqHVg6uA87pMUJLE+PqyXFM4PyqOY79J8MCNGA=
github.com/coinbase/rosetta-sdk-go v0.3.2-0.20200716022725-e9b34dbc2555 h1:Au73u6IRzyDgBdZRloeFtVs+cwJZGhmKsN2QiQ5apPY=
github.com/coinbase/rosetta-sdk-go v0.3.2-0.20200716022725-e9b34dbc2555/go.mod h1:xTq9qdqHVg6uA87pMUJLE+PqyXFM4PyqOY79J8MCNGA=
github.com/coinbase/rosetta-sdk-go v0.3.2 h1:2Fep2gIHBGDUNZVaRgSYp6KYfGeFbHp97OlJzw2YRsU=
github.com/coinbase/rosetta-sdk-go v0.3.2/go.mod h1:xTq9qdqHVg6uA87pMUJLE+PqyXFM4PyqOY79J8MCNGA=
github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk=
github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE=
github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk=
Expand Down