Skip to content
Snippets Groups Projects
Commit 3046b2a9 authored by Benjamin Bollen's avatar Benjamin Bollen
Browse files

Bug: mock_web_api_test fails on wire decode of TestData

parent 63263b4e
No related branches found
No related tags found
No related merge requests found
package mock
import (
"fmt"
account "github.com/eris-ltd/eris-db/account"
core_types "github.com/eris-ltd/eris-db/core/types"
definitions "github.com/eris-ltd/eris-db/definitions"
......@@ -88,6 +90,11 @@ func (this *MockPipe) SetConsensusEngine(_ definitions.ConsensusEngine) error {
// TODO: [ben] mock consensus engine
return nil
}
func (this *MockPipe) GetTendermintPipe() (definitions.TendermintPipe, error) {
return nil, fmt.Errorf("Tendermint pipe is not supported by mocked pipe.")
}
// Components
// Accounts
......
package testdata
import (
wire "github.com/tendermint/go-wire"
account "github.com/eris-ltd/eris-db/account"
core_types "github.com/eris-ltd/eris-db/core/types"
......@@ -697,15 +696,10 @@ type (
)
func LoadTestData() *TestData {
var err error
//codec := core_types.NewTCodec()
testData := TestData{}
testDataI := wire.ReadJSON(testData, []byte(testDataJson), &err)
/*err := codec.DecodeBytes(testData, []byte(testDataJson))
*/
if err != nil {
codec := rpc_v0.NewTCodec()
testData := &TestData{}
if err := codec.DecodeBytes(testData, []byte(testDataJson)); err != nil {
panic(err)
}
testData = testDataI.(TestData)
return &testData
return testData
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment