Browse Source

Merge pull request #1314 from tendermint/add-go-amino-as-source-to-wire

Add go amino as source to wire
pull/1312/head
Ethan Buchman 7 years ago
committed by GitHub
parent
commit
244d88dfda
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions
  1. +2
    -1
      Gopkg.lock
  2. +1
    -0
      Gopkg.toml
  3. +1
    -3
      Makefile

+ 2
- 1
Gopkg.lock View File

@ -259,6 +259,7 @@
"data" "data"
] ]
revision = "fa721242b042ecd4c6ed1a934ee740db4f74e45c" revision = "fa721242b042ecd4c6ed1a934ee740db4f74e45c"
source = "github.com/tendermint/go-amino"
version = "v0.7.3" version = "v0.7.3"
[[projects]] [[projects]]
@ -372,6 +373,6 @@
[solve-meta] [solve-meta]
analyzer-name = "dep" analyzer-name = "dep"
analyzer-version = 1 analyzer-version = 1
inputs-digest = "36505c5f341e1e80d7d55589a17727bbd9e89403624b4e02c9e8a21b1ed39d0f"
inputs-digest = "fe167dd9055ba9a4016e7bdad88da263372bca7ebdcebf5c81c609f396e605a3"
solver-name = "gps-cdcl" solver-name = "gps-cdcl"
solver-version = 1 solver-version = 1

+ 1
- 0
Gopkg.toml View File

@ -79,6 +79,7 @@
[[constraint]] [[constraint]]
name = "github.com/tendermint/go-wire" name = "github.com/tendermint/go-wire"
source = "github.com/tendermint/go-amino"
version = "0.7.3" version = "0.7.3"
[[constraint]] [[constraint]]


+ 1
- 3
Makefile View File

@ -186,6 +186,4 @@ metalinter_all:
# To avoid unintended conflicts with file names, always add to .PHONY # To avoid unintended conflicts with file names, always add to .PHONY
# unless there is a reason not to. # unless there is a reason not to.
# https://www.gnu.org/software/make/manual/html_node/Phony-Targets.html # https://www.gnu.org/software/make/manual/html_node/Phony-Targets.html
.PHONY: check build build_race dist install check_tools get_tools update_tools
get_vendor_deps draw_deps test_cover test_apps test_persistence test_p2p test
test_race test_libs test_integrations test_release test100 vagrant_test fmt
.PHONY: check build build_race dist install check_tools get_tools update_tools get_vendor_deps draw_deps test_cover test_apps test_persistence test_p2p test test_race test_libs test_integrations test_release test100 vagrant_test fmt

Loading…
Cancel
Save