This is an automated email from the ASF dual-hosted git repository.
cmorris pushed a change to branch splitroles-blockchain
in repository https://gitbox.apache.org/repos/asf/incubator-milagro-dta.git.
from ff784bb Tidy up beneficiary
new d4cd78d Pull history from chain
new 516834f Convert Order to Blockchain
new 8a62609 Remove BC reference to order method
new 2409254 Both secret & order working with TXs
The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
cmd/service/main.go | 13 +-
go.mod | 2 +-
libs/documents/docs.go | 20 +-
libs/documents/docs.pb.go | 178 +++++++------
libs/documents/docs.proto | 2 +
libs/documents/docs.validator.pb.go | 2 +
pkg/api/client.go | 24 +-
pkg/api/proto.go | 4 +-
pkg/bitcoinplugin/service.go | 2 +-
pkg/common/chain.go | 44 ++++
pkg/common/common.go | 12 +-
pkg/defaultservice/fulfill.go | 92 ++++---
pkg/defaultservice/order.go | 185 ++++++++------
pkg/defaultservice/plugable.go | 2 +-
pkg/defaultservice/service.go | 29 +++
pkg/endpoints/endpoints.go | 54 +---
pkg/safeguardsecret/service.go | 7 +-
pkg/service/service.go | 9 +-
.../transactions.go => query/queryresponse.go} | 35 +--
pkg/tendermint/status/statusresponse.go | 66 +++++
pkg/tendermint/tendermint.go | 43 ++--
pkg/tendermint/websockets.go | 283 ++++++++++++++++++---
22 files changed, 766 insertions(+), 342 deletions(-)
create mode 100644 pkg/common/chain.go
copy pkg/tendermint/{cmd/transactions.go => query/queryresponse.go} (75%)
create mode 100644 pkg/tendermint/status/statusresponse.go