Skip to content

Commit

Permalink
Merge pull request #4 from Zeemzo/master
Browse files Browse the repository at this point in the history
COC SubAccount Status
  • Loading branch information
Zeemzo authored Jan 1, 2019
2 parents 0963784 + 48e1c9a commit 4559ed6
Show file tree
Hide file tree
Showing 60 changed files with 752 additions and 513 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@

/vendor
1 change: 1 addition & 0 deletions .godir
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github.com/dileepaj/tracified-gateway
17 changes: 13 additions & 4 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@
name = "github.com/gorilla/mux"
version = "1.6.2"

[[constraint]]
name = "github.com/robfig/cron"
version = "1.1.0"

[[constraint]]
branch = "master"
name = "github.com/stellar/go"
Expand All @@ -48,3 +52,10 @@
[prune]
go-tests = true
unused-packages = true

[metadata.heroku]
root-package = "github.com/dileepaj/tracified-gateway"
go-version = "go1.10.3"
install = [ "." ]
ensure = "true"
additional-tools = ["github.com/golang-migrate/migrate"]
1 change: 1 addition & 0 deletions Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
web: tracified-gateway
68 changes: 0 additions & 68 deletions README.md

This file was deleted.

3 changes: 2 additions & 1 deletion api/APImodel/dao.go → api/apiModel/dao.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package apiModel

import(
"github.com/tracified-gateway/model"
"github.com/dileepaj/tracified-gateway/model"

)

type GetCOCCollection struct {
Expand Down
14 changes: 9 additions & 5 deletions api/APImodel/proof.go → api/apiModel/proof.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package apiModel

import (
"github.com/tracified-gateway/model"
"github.com/dileepaj/tracified-gateway/model"
)

//poc Success response
Expand Down Expand Up @@ -56,11 +56,15 @@ type InsertSuccess struct {

// }
type SubmitXDRSuccess struct {
Message string
Txns []model.TransactionCollectionBody

Status string
}

// type SubmitXDRSuccess struct {
// Message string
// Txns []model.TransactionCollectionBody

// }

type GenesisSuccess struct {
Message string
ProfileTxn string
Expand Down Expand Up @@ -210,7 +214,7 @@ type InsertTDP struct {
}

type TestTDP struct {
XDR string
XDR string
// RawTDP string
}

Expand Down
Loading

0 comments on commit 4559ed6

Please sign in to comment.