Skip to content

Commit

Permalink
Merge branch 'FD-497' of github.com:FactomProject/factomd into FD-497
Browse files Browse the repository at this point in the history
  • Loading branch information
Emyrk committed May 16, 2018
2 parents cf9a5f3 + a185a0f commit acb5171
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions common/messages/dataResponse.go
Expand Up @@ -270,9 +270,7 @@ func (m *DataResponse) MarshalBinary() ([]byte, error) {
}

func (m *DataResponse) String() string {
return fmt.Sprintf("DataResponse Type: %2d Hash: %x\n",
m.DataType,
m.DataHash.Bytes())
return fmt.Sprintf("DataResponse Type: %2d Hash: %x", m.DataType, m.DataHash.Bytes())
}

func (m *DataResponse) LogFields() log.Fields {
Expand Down
1 change: 1 addition & 0 deletions common/messages/msgbase/MessageBase.go
Expand Up @@ -45,6 +45,7 @@ type foo struct {
what map[[32]byte]interfaces.IMsg
}

//
var outs map[string]*foo = make(map[string]*foo)
var places map[string]interfaces.IMsg = make(map[string]interfaces.IMsg)

Expand Down

0 comments on commit acb5171

Please sign in to comment.