diff --git a/README.md b/README.md index 1db7b8c..70fe638 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ go install cmd/go-test-rp.go | Param key | Default | Description | | ------------- | ---------------------------- | ---------------------- | | --json_report | - | go test json file | +| --log_level | info | agent log level | | --rp_project | - | RP project name | | --rp_run_name | - | RP run name | | --rp_run_desc | - | RP run description | diff --git a/cmd/go-test-rp.go b/cmd/go-test-rp.go index 5b0407d..7232815 100644 --- a/cmd/go-test-rp.go +++ b/cmd/go-test-rp.go @@ -10,6 +10,7 @@ import ( func main() { jsonReportPath := flag.String("json_report", "", "path to go test json report") + loglevel := flag.String("log_level", "info", "logging level: debug, info") runName := flag.String("rp_run_name", "", "testrun name") runDesc := flag.String("rp_run_desc", "", "testrun description") rpProject := flag.String("rp_project", "", "report portal project") @@ -22,6 +23,9 @@ func main() { force := flag.Bool("force", false, "if true, exit code will be 0 even if errors") dumptransport := flag.Bool("dumptransport", false, "debug http with bodies") flag.Parse() + if *loglevel == "" { + log.Fatal("provide log level: debug, info") + } if *jsonReportPath == "" { log.Fatal("provide path to go test json report file using --json_report ex.json") } @@ -51,7 +55,7 @@ func main() { } } - a := integration.NewRPAgent(*rpUrl, *rpProject, *rpToken, *btsProject, *btsUrl, *dumptransport, integration.WithForce(*force)) + a := integration.NewRPAgent(*rpUrl, *rpProject, *rpToken, *btsProject, *btsUrl, *loglevel, *dumptransport, integration.WithForce(*force)) a.Report(*jsonReportPath, *runName, *runDesc, *rpProject, *tagStr) if a.JsonReportErrorsNum > 0 && !*force { // if any errors of broken tests are present fail build diff --git a/integration/reporter.go b/integration/reporter.go index 4960187..39e653c 100644 --- a/integration/reporter.go +++ b/integration/reporter.go @@ -35,7 +35,7 @@ var ( ) // Creates new Report Portal agent -func NewRPAgent(baseUrl string, project string, token string, btsProject string, btsUrl string, dumptransport bool, options ...func(*RPAgent) error) *RPAgent { +func NewRPAgent(baseUrl string, project string, token string, btsProject string, btsUrl string, loglevel string, dumptransport bool, options ...func(*RPAgent) error) *RPAgent { rpa := &RPAgent{ Events: make([]*TestEvent, 0), BtsProject: btsProject, @@ -44,7 +44,7 @@ func NewRPAgent(baseUrl string, project string, token string, btsProject string, Force: false, MaxRps: 400, TestLogBatch: make([]rpgoclient.LogPayload, 0), - l: NewLogger("info"), + l: NewLogger(loglevel), } if rpa.c == nil { rpa.c = rpgoclient.New(baseUrl, project, token, btsProject, btsUrl, dumptransport) @@ -170,6 +170,17 @@ func RPTestData(tpath string, testObj *TestObject) (name string, desc string) { return } +func (m *RPAgent) validateHierarchy(testObjects []*TestObject, tosByName map[string]*TestObject) { + for _, to := range testObjects { + for _, tpath := range to.FullPathCrumbs { + _, ok := tosByName[tpath] + if !ok { + m.l.Fatalf("invalid test hierarchy in json report (see bug: https://github.com/golang/go/issues/35180), object %s not found, exiting", tpath) + } + } + } +} + // startEntitiesHierarchy starts RP test entities hierarchically, using test path func (m *RPAgent) startEntitiesHierarchy( launchData rpgoclient.StartLaunchResponse, @@ -261,6 +272,7 @@ func (m *RPAgent) Report(jsonFilename string, runName string, runDesc string, pr events := parseEventsBatch(f) testObjects, tosByName := eventsToObjects(events) m.l.Infof(InfoColor, fmt.Sprintf("sending report to: %s, project: %s", m.c.GetBaseUrl(), m.c.GetProject())) + m.validateHierarchy(testObjects, tosByName) earliestInReport, latestInReport := getTimeBounds(events) launchData, err := m.c.StartLaunch(runName, runDesc, earliestInReport.Format(time.RFC3339), parseTags(tag), "DEFAULT") if err != nil { diff --git a/integration/testdata/real_panic.log b/integration/testdata/real_panic.log new file mode 100644 index 0000000..518b0a8 --- /dev/null +++ b/integration/testdata/real_panic.log @@ -0,0 +1,8087 @@ +{"Time":"2020-04-21T17:17:21.1991+03:00","Action":"run","Package":"command-line-arguments","Test":"TestActivateDaemons"} +{"Time":"2020-04-21T17:17:21.199322+03:00","Action":"output","Package":"command-line-arguments","Test":"TestActivateDaemons","Output":"=== RUN TestActivateDaemons\n"} +{"Time":"2020-04-21T17:17:21.6849+03:00","Action":"output","Package":"command-line-arguments","Test":"TestActivateDaemons","Output":"--- FAIL: TestActivateDaemons (0.49s)\n"} +{"Time":"2020-04-21T17:17:21.684928+03:00","Action":"output","Package":"command-line-arguments","Test":"TestActivateDaemons","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:17:21.684949+03:00","Action":"output","Package":"command-line-arguments","Test":"TestActivateDaemons","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:17:21.684968+03:00","Action":"output","Package":"command-line-arguments","Test":"TestActivateDaemons","Output":" \t \t\t\t\tprepare_test.go:30\n"} +{"Time":"2020-04-21T17:17:21.684975+03:00","Action":"output","Package":"command-line-arguments","Test":"TestActivateDaemons","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:17:21.684981+03:00","Action":"output","Package":"command-line-arguments","Test":"TestActivateDaemons","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:17:21.684994+03:00","Action":"output","Package":"command-line-arguments","Test":"TestActivateDaemons","Output":" \tTest: \tTestActivateDaemons\n"} +{"Time":"2020-04-21T17:17:21.684999+03:00","Action":"output","Package":"command-line-arguments","Test":"TestActivateDaemons","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:17:21.685004+03:00","Action":"fail","Package":"command-line-arguments","Test":"TestActivateDaemons","Elapsed":0.49} +{"Time":"2020-04-21T17:17:21.685023+03:00","Action":"output","Package":"command-line-arguments","Output":"FAIL\n"} +{"Time":"2020-04-21T17:17:21.68686+03:00","Action":"output","Package":"command-line-arguments","Output":"FAIL\tcommand-line-arguments\t0.902s\n"} +{"Time":"2020-04-21T17:17:21.686883+03:00","Action":"fail","Package":"command-line-arguments","Elapsed":0.902} +{"Time":"2020-04-21T17:17:24.131284+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers"} +{"Time":"2020-04-21T17:17:24.131533+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"=== RUN TestGetEnterpriseMembers\n"} +{"Time":"2020-04-21T17:17:24.131544+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"=== PAUSE TestGetEnterpriseMembers\n"} +{"Time":"2020-04-21T17:17:24.131548+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers"} +{"Time":"2020-04-21T17:17:24.131558+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFeeMember"} +{"Time":"2020-04-21T17:17:24.131565+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFeeMember","Output":"=== RUN TestGetFeeMember\n"} +{"Time":"2020-04-21T17:17:24.131572+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFeeMember","Output":"=== PAUSE TestGetFeeMember\n"} +{"Time":"2020-04-21T17:17:24.131575+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFeeMember"} +{"Time":"2020-04-21T17:17:24.131578+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFutureNetworkIncentivesMembers"} +{"Time":"2020-04-21T17:17:24.131593+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFutureNetworkIncentivesMembers","Output":"=== RUN TestGetFutureNetworkIncentivesMembers\n"} +{"Time":"2020-04-21T17:17:24.131612+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFutureNetworkIncentivesMembers","Output":"=== PAUSE TestGetFutureNetworkIncentivesMembers\n"} +{"Time":"2020-04-21T17:17:24.131616+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFutureNetworkIncentivesMembers"} +{"Time":"2020-04-21T17:17:24.13162+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFutureApplicationIncentivesMembers"} +{"Time":"2020-04-21T17:17:24.131623+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFutureApplicationIncentivesMembers","Output":"=== RUN TestGetFutureApplicationIncentivesMembers\n"} +{"Time":"2020-04-21T17:17:24.13163+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFutureApplicationIncentivesMembers","Output":"=== PAUSE TestGetFutureApplicationIncentivesMembers\n"} +{"Time":"2020-04-21T17:17:24.131633+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFutureApplicationIncentivesMembers"} +{"Time":"2020-04-21T17:17:24.131636+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFoundationMembers"} +{"Time":"2020-04-21T17:17:24.13164+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFoundationMembers","Output":"=== RUN TestGetFoundationMembers\n"} +{"Time":"2020-04-21T17:17:24.131643+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFoundationMembers","Output":"=== PAUSE TestGetFoundationMembers\n"} +{"Time":"2020-04-21T17:17:24.131646+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFoundationMembers"} +{"Time":"2020-04-21T17:17:24.131649+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetInitialAllocationMember"} +{"Time":"2020-04-21T17:17:24.131656+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetInitialAllocationMember","Output":"=== RUN TestGetInitialAllocationMember\n"} +{"Time":"2020-04-21T17:17:24.131663+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetInitialAllocationMember","Output":"=== PAUSE TestGetInitialAllocationMember\n"} +{"Time":"2020-04-21T17:17:24.131666+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetInitialAllocationMember"} +{"Time":"2020-04-21T17:17:24.131669+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMigrationAdminMemberCheckByCfg"} +{"Time":"2020-04-21T17:17:24.131672+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMigrationAdminMemberCheckByCfg","Output":"=== RUN TestGetMigrationAdminMemberCheckByCfg\n"} +{"Time":"2020-04-21T17:17:24.131676+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMigrationAdminMemberCheckByCfg","Output":"=== PAUSE TestGetMigrationAdminMemberCheckByCfg\n"} +{"Time":"2020-04-21T17:17:24.131679+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMigrationAdminMemberCheckByCfg"} +{"Time":"2020-04-21T17:17:24.131682+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers"} +{"Time":"2020-04-21T17:17:24.131685+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"=== CONT TestGetEnterpriseMembers\n"} +{"Time":"2020-04-21T17:17:24.131688+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFoundationMembers"} +{"Time":"2020-04-21T17:17:24.13169+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFoundationMembers","Output":"=== CONT TestGetFoundationMembers\n"} +{"Time":"2020-04-21T17:17:24.131693+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFutureNetworkIncentivesMembers"} +{"Time":"2020-04-21T17:17:24.131697+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFutureNetworkIncentivesMembers","Output":"=== CONT TestGetFutureNetworkIncentivesMembers\n"} +{"Time":"2020-04-21T17:17:24.131701+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMigrationAdminMemberCheckByCfg"} +{"Time":"2020-04-21T17:17:24.131704+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMigrationAdminMemberCheckByCfg","Output":"=== CONT TestGetMigrationAdminMemberCheckByCfg\n"} +{"Time":"2020-04-21T17:17:24.131711+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetInitialAllocationMember"} +{"Time":"2020-04-21T17:17:24.131714+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetInitialAllocationMember","Output":"=== CONT TestGetInitialAllocationMember\n"} +{"Time":"2020-04-21T17:17:24.131717+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetInitialAllocationMember","Output":"2020/04/21 17:17:24 [ loadMemberKeys ] could't load member keys: open /tmp/alfa-keys/foundation_0_member_keys.json: no such file or directory\n"} +{"Time":"2020-04-21T17:17:24.131725+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetInitialAllocationMember","Output":"2020/04/21 17:17:24 [ loadMemberKeys ] could't load member keys: open /tmp/alfa-keys/enterprise_0_member_keys.json: no such file or directory\n"} +{"Time":"2020-04-21T17:17:24.13173+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetInitialAllocationMember","Output":"2020/04/21 17:17:24 [ loadMemberKeys ] could't load member keys: open /tmp/alfa-keys/migration_admin_member_keys.json: no such file or directory\n"} +{"Time":"2020-04-21T17:17:24.13174+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetInitialAllocationMember","Output":"2020/04/21 17:17:24 [ loadMemberKeys ] could't load member keys: open /tmp/alfa-keys/network_incentives_0_member_keys.json: no such file or directory\n"} +{"Time":"2020-04-21T17:17:24.131743+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFutureApplicationIncentivesMembers"} +{"Time":"2020-04-21T17:17:24.131746+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFutureApplicationIncentivesMembers","Output":"=== CONT TestGetFutureApplicationIncentivesMembers\n"} +{"Time":"2020-04-21T17:17:24.131754+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFoundationMembers","Output":"--- FAIL: TestGetFoundationMembers (0.00s)\n"} +{"Time":"2020-04-21T17:17:24.131757+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFoundationMembers","Output":" e2e_genesis_deposits_test.go:180: C933\tУспешное получение 20-ти foundation мемберов\n"} +{"Time":"2020-04-21T17:17:24.131762+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFoundationMembers","Output":" keysfactory.go:30: config base dir /tmp/alfa-keys\n"} +{"Time":"2020-04-21T17:17:24.131765+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFoundationMembers","Elapsed":0} +{"Time":"2020-04-21T17:17:24.131775+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"--- FAIL: TestGetEnterpriseMembers (0.00s)\n"} +{"Time":"2020-04-21T17:17:24.131778+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"2020/04/21 17:17:24 [ loadMemberKeys ] could't load member keys: open /tmp/alfa-keys/application_incentives_0_member_keys.json: no such file or directory\n"} +{"Time":"2020-04-21T17:17:24.135087+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"panic: [ loadMemberKeys ] could't load member keys: open /tmp/alfa-keys/foundation_0_member_keys.json: no such file or directory [recovered]\n"} +{"Time":"2020-04-21T17:17:24.135098+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"\tpanic: [ loadMemberKeys ] could't load member keys: open /tmp/alfa-keys/foundation_0_member_keys.json: no such file or directory\n"} +{"Time":"2020-04-21T17:17:24.135103+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"\n"} +{"Time":"2020-04-21T17:17:24.135106+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"goroutine 66 [running]:\n"} +{"Time":"2020-04-21T17:17:24.135116+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"testing.tRunner.func1(0xc000118b00)\n"} +{"Time":"2020-04-21T17:17:24.13512+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"\t/usr/local/go/src/testing/testing.go:874 +0x3a3\n"} +{"Time":"2020-04-21T17:17:24.135123+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"panic(0x20c7260, 0xc000083040)\n"} +{"Time":"2020-04-21T17:17:24.135126+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"\t/usr/local/go/src/runtime/panic.go:679 +0x1b2\n"} +{"Time":"2020-04-21T17:17:24.135132+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"log.Panic(0xc0002dcf30, 0x1, 0x1)\n"} +{"Time":"2020-04-21T17:17:24.135135+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"\t/usr/local/go/src/log/log.go:338 +0xac\n"} +{"Time":"2020-04-21T17:17:24.135143+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"github.com/insolar/go-autotests/apitests/apihelper/keysfactory.LoadMemberKeys(0xc000118b00, 0xc000184020, 0x1d, 0x0, 0x0, 0x0, 0x0)\n"} +{"Time":"2020-04-21T17:17:24.13515+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"\t/Users/dmitryshidlovsky/go/src/github.com/insolar/go-autotests/apitests/apihelper/keysfactory/keysfactory.go:35 +0x6c1\n"} +{"Time":"2020-04-21T17:17:24.135179+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"github.com/insolar/go-autotests/apitests/tests/insolarapi.GetMemberRefByKeys(0xc000118b00, 0xc000184020, 0x1d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...)\n"} +{"Time":"2020-04-21T17:17:24.135198+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"\t/Users/dmitryshidlovsky/go/src/github.com/insolar/go-autotests/apitests/tests/insolarapi/insolar_api_wrapper.go:294 +0x7b\n"} +{"Time":"2020-04-21T17:17:24.13521+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"github.com/insolar/go-autotests/apitests/tests/e2e.TestGetFoundationMembers(0xc000118b00)\n"} +{"Time":"2020-04-21T17:17:24.135228+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"\t/Users/dmitryshidlovsky/go/src/github.com/insolar/go-autotests/apitests/tests/e2e/e2e_genesis_deposits_test.go:182 +0x3b0\n"} +{"Time":"2020-04-21T17:17:24.135238+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"testing.tRunner(0xc000118b00, 0x23b99a0)\n"} +{"Time":"2020-04-21T17:17:24.135247+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"\t/usr/local/go/src/testing/testing.go:909 +0xc9\n"} +{"Time":"2020-04-21T17:17:24.135251+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"created by testing.(*T).Run\n"} +{"Time":"2020-04-21T17:17:24.135258+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"\t/usr/local/go/src/testing/testing.go:960 +0x350\n"} +{"Time":"2020-04-21T17:17:24.136195+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Output":"FAIL\tgithub.com/insolar/go-autotests/apitests/tests/e2e\t0.320s\n"} +{"Time":"2020-04-21T17:17:24.136229+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetEnterpriseMembers","Elapsed":0.32} +{"Time":"2020-04-21T17:17:24.574888+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer","Output":"? \tgithub.com/insolar/go-autotests/apitests/tests/observer\t[no test files]\n"} +{"Time":"2020-04-21T17:17:24.57512+03:00","Action":"skip","Package":"github.com/insolar/go-autotests/apitests/tests/observer","Elapsed":0} +{"Time":"2020-04-21T17:17:25.765011+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Test":"TestNotification"} +{"Time":"2020-04-21T17:17:25.765058+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Test":"TestNotification","Output":"=== RUN TestNotification\n"} +{"Time":"2020-04-21T17:17:26.121954+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Test":"TestNotification","Output":"--- PASS: TestNotification (0.36s)\n"} +{"Time":"2020-04-21T17:17:26.122039+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Test":"TestNotification","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:26.122046+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Test":"TestNotification","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/notification\n"} +{"Time":"2020-04-21T17:17:26.122058+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Test":"TestNotification","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:26.122074+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Test":"TestNotification","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:26.122087+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Test":"TestNotification","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:26.122094+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Test":"TestNotification","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:26.122137+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Test":"TestNotification","Output":" apilogger.go:54: http status: 204 No Content\n"} +{"Time":"2020-04-21T17:17:26.122154+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Test":"TestNotification","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:26.122167+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Test":"TestNotification","Output":" {\n"} +{"Time":"2020-04-21T17:17:26.122175+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Test":"TestNotification","Output":" \"notification\": \"\"\n"} +{"Time":"2020-04-21T17:17:26.122181+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Test":"TestNotification","Output":" }\n"} +{"Time":"2020-04-21T17:17:26.122186+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Test":"TestNotification","Elapsed":0.36} +{"Time":"2020-04-21T17:17:26.122197+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Output":"PASS\n"} +{"Time":"2020-04-21T17:17:26.124289+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Output":"ok \tgithub.com/insolar/go-autotests/apitests/tests/observer/observerinformation\t0.624s\n"} +{"Time":"2020-04-21T17:17:26.124311+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Elapsed":0.624} +{"Time":"2020-04-21T17:17:27.10045+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver"} +{"Time":"2020-04-21T17:17:27.100492+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":"=== RUN TestGetClosedTransactionsObserver\n"} +{"Time":"2020-04-21T17:17:27.392194+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestGetBETransactionDetails"} +{"Time":"2020-04-21T17:17:27.392216+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestGetBETransactionDetails","Output":"=== RUN TestGetBETransactionDetails\n"} +{"Time":"2020-04-21T17:17:27.392234+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestGetBETransactionDetails","Output":"--- SKIP: TestGetBETransactionDetails (0.00s)\n"} +{"Time":"2020-04-21T17:17:27.39224+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestGetBETransactionDetails","Output":" transaction_details_test.go:32: this endpoint does not implemented in MainNet\n"} +{"Time":"2020-04-21T17:17:27.392243+03:00","Action":"skip","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestGetBETransactionDetails","Elapsed":0} +{"Time":"2020-04-21T17:17:27.392253+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Output":"PASS\n"} +{"Time":"2020-04-21T17:17:27.393151+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Output":"ok \tgithub.com/insolar/go-autotests/apitests/tests/observer/observerinternal\t0.602s\n"} +{"Time":"2020-04-21T17:17:27.393166+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Elapsed":0.603} +{"Time":"2020-04-21T17:17:27.686412+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber"} +{"Time":"2020-04-21T17:17:27.686451+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":"=== RUN TestGetPulseNumber\n"} +{"Time":"2020-04-21T17:17:27.686461+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":"=== PAUSE TestGetPulseNumber\n"} +{"Time":"2020-04-21T17:17:27.686464+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber"} +{"Time":"2020-04-21T17:17:27.686468+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange"} +{"Time":"2020-04-21T17:17:27.686472+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":"=== RUN TestGetPulseRange\n"} +{"Time":"2020-04-21T17:17:27.686483+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":"=== PAUSE TestGetPulseRange\n"} +{"Time":"2020-04-21T17:17:27.686486+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange"} +{"Time":"2020-04-21T17:17:27.686489+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero"} +{"Time":"2020-04-21T17:17:27.686494+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":"=== RUN TestGetPulseRange_FromTimestampIsZero\n"} +{"Time":"2020-04-21T17:17:27.686499+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":"=== PAUSE TestGetPulseRange_FromTimestampIsZero\n"} +{"Time":"2020-04-21T17:17:27.686502+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero"} +{"Time":"2020-04-21T17:17:27.686505+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus"} +{"Time":"2020-04-21T17:17:27.686508+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":"=== RUN TestGetPulseRange_FromTimestampIsMinus\n"} +{"Time":"2020-04-21T17:17:27.686511+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":"=== PAUSE TestGetPulseRange_FromTimestampIsMinus\n"} +{"Time":"2020-04-21T17:17:27.686514+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus"} +{"Time":"2020-04-21T17:17:27.686517+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_ToTimestampIsZero"} +{"Time":"2020-04-21T17:17:27.686519+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_ToTimestampIsZero","Output":"=== RUN TestGetPulseRange_ToTimestampIsZero\n"} +{"Time":"2020-04-21T17:17:27.686522+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_ToTimestampIsZero","Output":"=== PAUSE TestGetPulseRange_ToTimestampIsZero\n"} +{"Time":"2020-04-21T17:17:27.686525+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_ToTimestampIsZero"} +{"Time":"2020-04-21T17:17:27.686528+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampGreaterToTimestamp"} +{"Time":"2020-04-21T17:17:27.686537+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampGreaterToTimestamp","Output":"=== RUN TestGetPulseRange_FromTimestampGreaterToTimestamp\n"} +{"Time":"2020-04-21T17:17:27.686542+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampGreaterToTimestamp","Output":"=== PAUSE TestGetPulseRange_FromTimestampGreaterToTimestamp\n"} +{"Time":"2020-04-21T17:17:27.686546+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampGreaterToTimestamp"} +{"Time":"2020-04-21T17:17:27.686548+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIsZero"} +{"Time":"2020-04-21T17:17:27.686551+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIsZero","Output":"=== RUN TestGetPulseRange_LimitIsZero\n"} +{"Time":"2020-04-21T17:17:27.68656+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIsZero","Output":"=== PAUSE TestGetPulseRange_LimitIsZero\n"} +{"Time":"2020-04-21T17:17:27.686563+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIsZero"} +{"Time":"2020-04-21T17:17:27.686566+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIs1001"} +{"Time":"2020-04-21T17:17:27.686569+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIs1001","Output":"=== RUN TestGetPulseRange_LimitIs1001\n"} +{"Time":"2020-04-21T17:17:27.686572+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIs1001","Output":"=== PAUSE TestGetPulseRange_LimitIs1001\n"} +{"Time":"2020-04-21T17:17:27.686575+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIs1001"} +{"Time":"2020-04-21T17:17:27.686577+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination"} +{"Time":"2020-04-21T17:17:27.68658+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":"=== RUN TestGetPulseRange_CheckPagination\n"} +{"Time":"2020-04-21T17:17:27.686583+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":"=== PAUSE TestGetPulseRange_CheckPagination\n"} +{"Time":"2020-04-21T17:17:27.686587+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination"} +{"Time":"2020-04-21T17:17:27.68659+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange"} +{"Time":"2020-04-21T17:17:27.686593+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":"=== RUN TestGetTransactionsByPulseNumberRange\n"} +{"Time":"2020-04-21T17:17:27.686597+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":"=== PAUSE TestGetTransactionsByPulseNumberRange\n"} +{"Time":"2020-04-21T17:17:27.6866+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange"} +{"Time":"2020-04-21T17:17:27.686608+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FromPulseIsZero"} +{"Time":"2020-04-21T17:17:27.686611+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FromPulseIsZero","Output":"=== RUN TestGetTransactionsByPulseNumberRange_FromPulseIsZero\n"} +{"Time":"2020-04-21T17:17:27.686616+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FromPulseIsZero","Output":"=== PAUSE TestGetTransactionsByPulseNumberRange_FromPulseIsZero\n"} +{"Time":"2020-04-21T17:17:27.686619+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FromPulseIsZero"} +{"Time":"2020-04-21T17:17:27.686624+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FromPulseIsMinimum_1"} +{"Time":"2020-04-21T17:17:27.686633+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FromPulseIsMinimum_1","Output":"=== RUN TestGetTransactionsByPulseNumberRange_FromPulseIsMinimum_1\n"} +{"Time":"2020-04-21T17:17:27.686642+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FromPulseIsMinimum_1","Output":"=== PAUSE TestGetTransactionsByPulseNumberRange_FromPulseIsMinimum_1\n"} +{"Time":"2020-04-21T17:17:27.686647+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FromPulseIsMinimum_1"} +{"Time":"2020-04-21T17:17:27.68665+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsZero"} +{"Time":"2020-04-21T17:17:27.686653+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsZero","Output":"=== RUN TestGetTransactionsByPulseNumberRange_ToPulseIsZero\n"} +{"Time":"2020-04-21T17:17:27.686656+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsZero","Output":"=== PAUSE TestGetTransactionsByPulseNumberRange_ToPulseIsZero\n"} +{"Time":"2020-04-21T17:17:27.686659+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsZero"} +{"Time":"2020-04-21T17:17:27.686663+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsMinimum_1"} +{"Time":"2020-04-21T17:17:27.686667+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsMinimum_1","Output":"=== RUN TestGetTransactionsByPulseNumberRange_ToPulseIsMinimum_1\n"} +{"Time":"2020-04-21T17:17:27.686673+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsMinimum_1","Output":"=== PAUSE TestGetTransactionsByPulseNumberRange_ToPulseIsMinimum_1\n"} +{"Time":"2020-04-21T17:17:27.686678+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsMinimum_1"} +{"Time":"2020-04-21T17:17:27.686683+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse"} +{"Time":"2020-04-21T17:17:27.686686+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse","Output":"=== RUN TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse\n"} +{"Time":"2020-04-21T17:17:27.68669+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse","Output":"=== PAUSE TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse\n"} +{"Time":"2020-04-21T17:17:27.686692+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse"} +{"Time":"2020-04-21T17:17:27.686705+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_LimitIsZero"} +{"Time":"2020-04-21T17:17:27.68671+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_LimitIsZero","Output":"=== RUN TestGetTransactionsByPulseNumberRange_LimitIsZero\n"} +{"Time":"2020-04-21T17:17:27.686715+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_LimitIsZero","Output":"=== PAUSE TestGetTransactionsByPulseNumberRange_LimitIsZero\n"} +{"Time":"2020-04-21T17:17:27.686718+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_LimitIsZero"} +{"Time":"2020-04-21T17:17:27.68672+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_LimitIsMaxAndOne"} +{"Time":"2020-04-21T17:17:27.686723+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_LimitIsMaxAndOne","Output":"=== RUN TestGetTransactionsByPulseNumberRange_LimitIsMaxAndOne\n"} +{"Time":"2020-04-21T17:17:27.686726+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_LimitIsMaxAndOne","Output":"=== PAUSE TestGetTransactionsByPulseNumberRange_LimitIsMaxAndOne\n"} +{"Time":"2020-04-21T17:17:27.686729+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_LimitIsMaxAndOne"} +{"Time":"2020-04-21T17:17:27.686732+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindMigration"} +{"Time":"2020-04-21T17:17:27.686736+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindMigration","Output":"=== RUN TestGetTransactionsByPulseNumberRange_FindMigration\n"} +{"Time":"2020-04-21T17:17:27.686739+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindMigration","Output":"=== PAUSE TestGetTransactionsByPulseNumberRange_FindMigration\n"} +{"Time":"2020-04-21T17:17:27.686742+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindMigration"} +{"Time":"2020-04-21T17:17:27.686745+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer"} +{"Time":"2020-04-21T17:17:27.686748+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":"=== RUN TestGetTransactionsByPulseNumberRange_FindTransfer\n"} +{"Time":"2020-04-21T17:17:27.686754+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":"=== PAUSE TestGetTransactionsByPulseNumberRange_FindTransfer\n"} +{"Time":"2020-04-21T17:17:27.686757+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer"} +{"Time":"2020-04-21T17:17:27.686759+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransferToAccount"} +{"Time":"2020-04-21T17:17:27.686762+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransferToAccount","Output":"=== RUN TestGetTransactionsByPulseNumberRange_FindTransferToAccount\n"} +{"Time":"2020-04-21T17:17:27.68677+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransferToAccount","Output":"=== PAUSE TestGetTransactionsByPulseNumberRange_FindTransferToAccount\n"} +{"Time":"2020-04-21T17:17:27.686774+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransferToAccount"} +{"Time":"2020-04-21T17:17:27.686779+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination"} +{"Time":"2020-04-21T17:17:27.686784+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":"=== RUN TestGetTransactionsByPulseNumberRange_CheckPagination\n"} +{"Time":"2020-04-21T17:17:27.686788+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":"=== PAUSE TestGetTransactionsByPulseNumberRange_CheckPagination\n"} +{"Time":"2020-04-21T17:17:27.686793+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination"} +{"Time":"2020-04-21T17:17:27.686796+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter"} +{"Time":"2020-04-21T17:17:27.686799+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":"=== RUN TestGetTransactionsByPulseNumberRange_MemberFilter\n"} +{"Time":"2020-04-21T17:17:27.686802+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":"=== PAUSE TestGetTransactionsByPulseNumberRange_MemberFilter\n"} +{"Time":"2020-04-21T17:17:27.686805+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter"} +{"Time":"2020-04-21T17:17:27.686808+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference"} +{"Time":"2020-04-21T17:17:27.68681+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":"=== RUN TestGetTransactionsByPulseNumberRange_RandomReference\n"} +{"Time":"2020-04-21T17:17:27.686814+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":"=== PAUSE TestGetTransactionsByPulseNumberRange_RandomReference\n"} +{"Time":"2020-04-21T17:17:27.686817+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference"} +{"Time":"2020-04-21T17:17:27.686821+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_Migration"} +{"Time":"2020-04-21T17:17:27.686825+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_Migration","Output":"=== RUN TestGetTransactionsByPulseNumberRange_MemberFilter_Migration\n"} +{"Time":"2020-04-21T17:17:27.686831+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_Migration","Output":"=== PAUSE TestGetTransactionsByPulseNumberRange_MemberFilter_Migration\n"} +{"Time":"2020-04-21T17:17:27.686835+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_Migration"} +{"Time":"2020-04-21T17:17:27.686843+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer"} +{"Time":"2020-04-21T17:17:27.686847+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":"=== RUN TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer\n"} +{"Time":"2020-04-21T17:17:27.686856+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":"=== PAUSE TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer\n"} +{"Time":"2020-04-21T17:17:27.686861+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer"} +{"Time":"2020-04-21T17:17:27.686867+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount"} +{"Time":"2020-04-21T17:17:27.686872+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount","Output":"=== RUN TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount\n"} +{"Time":"2020-04-21T17:17:27.686884+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount","Output":"=== PAUSE TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount\n"} +{"Time":"2020-04-21T17:17:27.686889+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount"} +{"Time":"2020-04-21T17:17:27.686896+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber"} +{"Time":"2020-04-21T17:17:27.68691+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":"=== CONT TestGetPulseNumber\n"} +{"Time":"2020-04-21T17:17:27.686923+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse"} +{"Time":"2020-04-21T17:17:27.686931+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse","Output":"=== CONT TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse\n"} +{"Time":"2020-04-21T17:17:27.686937+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindMigration"} +{"Time":"2020-04-21T17:17:27.686941+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindMigration","Output":"=== CONT TestGetTransactionsByPulseNumberRange_FindMigration\n"} +{"Time":"2020-04-21T17:17:27.686949+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter"} +{"Time":"2020-04-21T17:17:27.686954+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":"=== CONT TestGetTransactionsByPulseNumberRange_MemberFilter\n"} +{"Time":"2020-04-21T17:17:27.68697+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount"} +{"Time":"2020-04-21T17:17:27.686975+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount","Output":"=== CONT TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount\n"} +{"Time":"2020-04-21T17:17:27.68698+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer"} +{"Time":"2020-04-21T17:17:27.686985+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":"=== CONT TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer\n"} +{"Time":"2020-04-21T17:17:27.68699+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_Migration"} +{"Time":"2020-04-21T17:17:27.686994+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_Migration","Output":"=== CONT TestGetTransactionsByPulseNumberRange_MemberFilter_Migration\n"} +{"Time":"2020-04-21T17:17:27.686999+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference"} +{"Time":"2020-04-21T17:17:27.687004+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":"=== CONT TestGetTransactionsByPulseNumberRange_RandomReference\n"} +{"Time":"2020-04-21T17:17:27.687057+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_LimitIsMaxAndOne"} +{"Time":"2020-04-21T17:17:27.687066+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_LimitIsMaxAndOne","Output":"=== CONT TestGetTransactionsByPulseNumberRange_LimitIsMaxAndOne\n"} +{"Time":"2020-04-21T17:17:27.687156+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer"} +{"Time":"2020-04-21T17:17:27.687164+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":"=== CONT TestGetTransactionsByPulseNumberRange_FindTransfer\n"} +{"Time":"2020-04-21T17:17:27.687175+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination"} +{"Time":"2020-04-21T17:17:27.68718+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":"=== CONT TestGetTransactionsByPulseNumberRange_CheckPagination\n"} +{"Time":"2020-04-21T17:17:27.687204+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransferToAccount"} +{"Time":"2020-04-21T17:17:27.687212+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransferToAccount","Output":"=== CONT TestGetTransactionsByPulseNumberRange_FindTransferToAccount\n"} +{"Time":"2020-04-21T17:17:27.687237+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_LimitIsMaxAndOne","Output":"--- PASS: TestGetTransactionsByPulseNumberRange_LimitIsMaxAndOne (0.00s)\n"} +{"Time":"2020-04-21T17:17:27.687246+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_LimitIsMaxAndOne","Output":" pulse_transactions_range_test.go:102: C4000\tОшибка получения диапазона транзакций, если передан limit=1001\n"} +{"Time":"2020-04-21T17:17:27.687253+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_LimitIsMaxAndOne","Elapsed":0} +{"Time":"2020-04-21T17:17:27.687258+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIs1001"} +{"Time":"2020-04-21T17:17:27.687261+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIs1001","Output":"=== CONT TestGetPulseRange_LimitIs1001\n"} +{"Time":"2020-04-21T17:17:27.687313+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsMinimum_1"} +{"Time":"2020-04-21T17:17:27.687324+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsMinimum_1","Output":"=== CONT TestGetTransactionsByPulseNumberRange_ToPulseIsMinimum_1\n"} +{"Time":"2020-04-21T17:17:27.687335+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIs1001","Output":"--- SKIP: TestGetPulseRange_LimitIs1001 (0.00s)\n"} +{"Time":"2020-04-21T17:17:27.687343+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIs1001","Output":" pulse_range_test.go:95: C3990\tОшибка получения диапазона финализированных пульсов, если передан limit=1001\n"} +{"Time":"2020-04-21T17:17:27.68735+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIs1001","Output":" pulse_range_test.go:96: https://insolar.atlassian.net/browse/MN-194\n"} +{"Time":"2020-04-21T17:17:27.687364+03:00","Action":"skip","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIs1001","Elapsed":0} +{"Time":"2020-04-21T17:17:27.687371+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FromPulseIsZero"} +{"Time":"2020-04-21T17:17:27.687375+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FromPulseIsZero","Output":"=== CONT TestGetTransactionsByPulseNumberRange_FromPulseIsZero\n"} +{"Time":"2020-04-21T17:17:27.687395+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FromPulseIsZero","Output":"--- PASS: TestGetTransactionsByPulseNumberRange_FromPulseIsZero (0.00s)\n"} +{"Time":"2020-04-21T17:17:27.687405+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FromPulseIsZero","Output":" pulse_transactions_range_test.go:44: C3994\tОшибка получения диапазона транзакций, если передан fromPulse=0\n"} +{"Time":"2020-04-21T17:17:27.687412+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FromPulseIsZero","Elapsed":0} +{"Time":"2020-04-21T17:17:27.687419+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsMinimum_1","Output":"--- PASS: TestGetTransactionsByPulseNumberRange_ToPulseIsMinimum_1 (0.00s)\n"} +{"Time":"2020-04-21T17:17:27.687424+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsMinimum_1","Output":" pulse_transactions_range_test.go:74: C3997\tОшибка получения диапазона транзакций, если передан toPulse=65536\n"} +{"Time":"2020-04-21T17:17:27.68743+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsMinimum_1","Elapsed":0} +{"Time":"2020-04-21T17:17:27.687435+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange"} +{"Time":"2020-04-21T17:17:27.68744+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":"=== CONT TestGetTransactionsByPulseNumberRange\n"} +{"Time":"2020-04-21T17:17:27.961853+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":"--- FAIL: TestGetClosedTransactionsObserver (0.86s)\n"} +{"Time":"2020-04-21T17:17:27.961886+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" closed_transactions_test.go:19: C899\tУспешное получение списка закрытых транзакций после трансфера между мемберами\n"} +{"Time":"2020-04-21T17:17:27.96191+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:27.961919+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" insolar_api_wrapper.go:126: Received seed: IIH0E26TeTVt7Lfb5GJWCMO8QNVvWkWHQMYgehpMDAA=\n"} +{"Time":"2020-04-21T17:17:27.961928+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:27.961936+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:27.961982+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:27.961998+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:27.96201+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:27.962016+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:27.962021+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:27.962026+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" {\n"} +{"Time":"2020-04-21T17:17:27.962031+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:27.962037+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"id\": 1,\n"} +{"Time":"2020-04-21T17:17:27.962042+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:27.962047+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" }\n"} +{"Time":"2020-04-21T17:17:27.962052+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:27.962067+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:27.962072+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:27.962077+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" {\n"} +{"Time":"2020-04-21T17:17:27.962082+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:27.962087+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"id\": 1,\n"} +{"Time":"2020-04-21T17:17:27.9621+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:27.962108+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"seed\": \"IIH0E26TeTVt7Lfb5GJWCMO8QNVvWkWHQMYgehpMDAA=\"\n"} +{"Time":"2020-04-21T17:17:27.962114+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" },\n"} +{"Time":"2020-04-21T17:17:27.962121+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:27.962126+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:27.962131+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:27.962137+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:27.962142+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" },\n"} +{"Time":"2020-04-21T17:17:27.962146+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:27.962151+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:27.962156+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" }\n"} +{"Time":"2020-04-21T17:17:27.962161+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" }\n"} +{"Time":"2020-04-21T17:17:27.962166+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:27.962171+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:27.962176+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:27.962181+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:27.96219+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:27.962195+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:41: -H Digest: [SHA-256=djM74o94vWF4tLi2DDZBtPJerQp+FoTfUh2TR+vCvys=]\n"} +{"Time":"2020-04-21T17:17:27.962201+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:27.962206+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEUCIA+hz+yLVdAgb3yPPyk0xEo7oCsAFjdp94ggQtU1kK2ZAiEA3hQOMf0x1SaSVymhoVEUxnwiyYzRNi/Zpdvss8DN0eM=]\n"} +{"Time":"2020-04-21T17:17:27.962212+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:27.962217+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:27.962222+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" {\n"} +{"Time":"2020-04-21T17:17:27.962229+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:27.962234+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"id\": 2,\n"} +{"Time":"2020-04-21T17:17:27.962239+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:27.962244+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:27.962251+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"seed\": \"IIH0E26TeTVt7Lfb5GJWCMO8QNVvWkWHQMYgehpMDAA=\",\n"} +{"Time":"2020-04-21T17:17:27.962257+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:17:27.962262+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAECDi96SGck2m/GrtWLsgo3pG/HfoG\\nIvVGhRYoWx5gjDGe/S01B7n9TFCY2Cgwn+DNhNq075x1pj3yO5dzziZyYg==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:27.962268+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" }\n"} +{"Time":"2020-04-21T17:17:27.962273+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" }\n"} +{"Time":"2020-04-21T17:17:27.962278+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:27.962283+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:27.962294+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:27.962299+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" {\n"} +{"Time":"2020-04-21T17:17:27.962304+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:27.962309+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"id\": 2,\n"} +{"Time":"2020-04-21T17:17:27.962314+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:27.962319+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:27.962328+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"reference\": \"insolar:1AnVS9CCHhxXOTwmdzzh3xSEBuAjiYKlu0L_Y9MbU9to\"\n"} +{"Time":"2020-04-21T17:17:27.962333+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" },\n"} +{"Time":"2020-04-21T17:17:27.962338+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"requestReference\": \"insolar:1AnVS9F7Y1TIsGNbWG2Fs_9LYbIH3bsXS3BuGIBizwAc.record\",\n"} +{"Time":"2020-04-21T17:17:27.962344+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"traceID\": \"0c47730f80c65b0241e7f8a97782378f\"\n"} +{"Time":"2020-04-21T17:17:27.962349+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" },\n"} +{"Time":"2020-04-21T17:17:27.962354+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:27.962359+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:27.962364+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:27.962369+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:27.962374+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:27.962379+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" },\n"} +{"Time":"2020-04-21T17:17:27.962384+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:27.962389+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:27.962394+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" }\n"} +{"Time":"2020-04-21T17:17:27.962409+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" }\n"} +{"Time":"2020-04-21T17:17:27.962425+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" insolar_api_wrapper.go:160: Member created: insolar:1AnVS9CCHhxXOTwmdzzh3xSEBuAjiYKlu0L_Y9MbU9to\n"} +{"Time":"2020-04-21T17:17:27.962435+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:17:27.96244+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:17:27.962446+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \t \t\t\t\tinsolar_api_wrapper.go:322\n"} +{"Time":"2020-04-21T17:17:27.962451+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \t \t\t\t\tinsolar_api_wrapper.go:183\n"} +{"Time":"2020-04-21T17:17:27.962456+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \t \t\t\t\tclosed_transactions_test.go:20\n"} +{"Time":"2020-04-21T17:17:27.962461+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:17:27.962466+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:17:27.962472+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \tTest: \tTestGetClosedTransactionsObserver\n"} +{"Time":"2020-04-21T17:17:27.962477+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:17:27.962483+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsObserver","Elapsed":0.86} +{"Time":"2020-04-21T17:17:27.96249+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse"} +{"Time":"2020-04-21T17:17:27.962495+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":"=== RUN TestGetClosedTransactionsSortReverse\n"} +{"Time":"2020-04-21T17:17:28.012618+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":"--- PASS: TestGetTransactionsByPulseNumberRange (0.33s)\n"} +{"Time":"2020-04-21T17:17:28.012639+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" pulse_transactions_range_test.go:37: C3978\tУспешное получение диапазона транзакций\n"} +{"Time":"2020-04-21T17:17:28.012654+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.012658+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/transactions/inPulseNumberRange?fromPulseNumber=65538\u0026limit=10\u0026toPulseNumber=1587478647\n"} +{"Time":"2020-04-21T17:17:28.012662+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" apilogger.go:36: Query params: map[fromPulseNumber:[65538] limit:[10] toPulseNumber:[1587478647]]\n"} +{"Time":"2020-04-21T17:17:28.012678+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.012684+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.012689+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.012692+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.012696+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.012703+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" [\n"} +{"Time":"2020-04-21T17:17:28.012707+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.012712+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"index\": \"39510165:22\",\n"} +{"Time":"2020-04-21T17:17:28.012716+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"txID\": \"insolar:1Alrgle3kUlo1L8s45QFW3b8fLchPiiFYrxyzUsIdnBM.record\",\n"} +{"Time":"2020-04-21T17:17:28.012721+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.012727+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"timestamp\": 1585745428,\n"} +{"Time":"2020-04-21T17:17:28.012736+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.01274+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"pulseNumber\": 39510165,\n"} +{"Time":"2020-04-21T17:17:28.012743+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.012749+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.012753+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.012757+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.012762+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.012767+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.012776+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.012781+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"index\": \"39510785:38\",\n"} +{"Time":"2020-04-21T17:17:28.012785+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"txID\": \"insolar:1AlrjAatbTvjteaN59ylmE1OHuhbtorKUJFGfVDhTGsI.record\",\n"} +{"Time":"2020-04-21T17:17:28.012791+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"amount\": \"400000000000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.012795+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.012798+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"timestamp\": 1585746048,\n"} +{"Time":"2020-04-21T17:17:28.012801+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"status\": \"sent\",\n"} +{"Time":"2020-04-21T17:17:28.012804+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"pulseNumber\": 39510785,\n"} +{"Time":"2020-04-21T17:17:28.012808+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.012812+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.012815+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.012819+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toDepositReference\": \"insolar:1AlrjAaZvPkfBGd2xgQAF7ViJv9v3kMmzsU1-EY5XC4o\",\n"} +{"Time":"2020-04-21T17:17:28.012822+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.012826+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.01283+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.012834+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"index\": \"39510985:172\",\n"} +{"Time":"2020-04-21T17:17:28.012838+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"txID\": \"insolar:1AlrjyXdurgwFZS2sF0DHgUO1jWnwmVftBTqk3eIHAYY.record\",\n"} +{"Time":"2020-04-21T17:17:28.012841+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"amount\": \"4000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.012844+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.012848+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"timestamp\": 1585746248,\n"} +{"Time":"2020-04-21T17:17:28.012851+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.012854+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"pulseNumber\": 39510985,\n"} +{"Time":"2020-04-21T17:17:28.012862+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.012887+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.012894+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.012899+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toDepositReference\": \"insolar:1AlrjybdhmP59Fb1Pm-HSrQw6ROKsCa_ZAJ0dF0zReSU\",\n"} +{"Time":"2020-04-21T17:17:28.012903+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.012907+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.01291+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.012914+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"index\": \"39511325:21\",\n"} +{"Time":"2020-04-21T17:17:28.012918+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"txID\": \"insolar:1AlrlHdU3pJnF6hH8DWkQg8ojZH3EoGoznqhM12rdp4s.record\",\n"} +{"Time":"2020-04-21T17:17:28.012922+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"amount\": \"324588069\",\n"} +{"Time":"2020-04-21T17:17:28.012929+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.012933+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"timestamp\": 1585746588,\n"} +{"Time":"2020-04-21T17:17:28.012938+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.012943+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"pulseNumber\": 39511325,\n"} +{"Time":"2020-04-21T17:17:28.012948+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.012952+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.012962+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.012966+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.01297+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromDepositReference\": \"insolar:1AlrjybdhmP59Fb1Pm-HSrQw6ROKsCa_ZAJ0dF0zReSU\"\n"} +{"Time":"2020-04-21T17:17:28.012973+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.012977+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.012981+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"index\": \"39511345:13\",\n"} +{"Time":"2020-04-21T17:17:28.012986+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"txID\": \"insolar:1AlrlMTBGrdT3xUaL6zIPJV_rjYZK1FfVulYrKS2Q_O0.record\",\n"} +{"Time":"2020-04-21T17:17:28.01299+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"amount\": \"34550710\",\n"} +{"Time":"2020-04-21T17:17:28.012994+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.012997+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"timestamp\": 1585746608,\n"} +{"Time":"2020-04-21T17:17:28.013+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.013004+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"pulseNumber\": 39511345,\n"} +{"Time":"2020-04-21T17:17:28.013007+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.01301+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.013014+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.013017+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.01302+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromDepositReference\": \"insolar:1AlrjybdhmP59Fb1Pm-HSrQw6ROKsCa_ZAJ0dF0zReSU\"\n"} +{"Time":"2020-04-21T17:17:28.013024+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.013027+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.01303+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"index\": \"39511695:90\",\n"} +{"Time":"2020-04-21T17:17:28.013041+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"txID\": \"insolar:1Alrmjw3HUCi4RDMD1cp_tkeSCko9kn0XWwUNEPMCFJo.record\",\n"} +{"Time":"2020-04-21T17:17:28.013045+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"amount\": \"4000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.013048+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.013052+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"timestamp\": 1585746958,\n"} +{"Time":"2020-04-21T17:17:28.013055+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.01306+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"pulseNumber\": 39511695,\n"} +{"Time":"2020-04-21T17:17:28.013068+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.013072+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.013075+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.013079+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toDepositReference\": \"insolar:1Alrmj4GPrBp-yYrB23FmQqZiz-8aR5zoLkaBeDXyS1A\",\n"} +{"Time":"2020-04-21T17:17:28.013082+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.013086+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.013089+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.013092+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"index\": \"39511975:60\",\n"} +{"Time":"2020-04-21T17:17:28.013095+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"txID\": \"insolar:1AlrnpzgkIh0Q04bUapvUyYi8i-o7RWXbHcU-Ax0k07E.record\",\n"} +{"Time":"2020-04-21T17:17:28.0131+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"amount\": \"259138779\",\n"} +{"Time":"2020-04-21T17:17:28.013105+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.013108+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"timestamp\": 1585747238,\n"} +{"Time":"2020-04-21T17:17:28.013116+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.01312+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"pulseNumber\": 39511975,\n"} +{"Time":"2020-04-21T17:17:28.013123+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.013126+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.013129+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.013133+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.013136+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.013141+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.013144+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.013147+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"index\": \"39512025:30\",\n"} +{"Time":"2020-04-21T17:17:28.013156+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"txID\": \"insolar:1Alrn2VmefBLimKX0jgAV-vXPM5NxYZhWbLkq3UyfSts.record\",\n"} +{"Time":"2020-04-21T17:17:28.013166+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"amount\": \"1028748985\",\n"} +{"Time":"2020-04-21T17:17:28.013169+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.013173+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"timestamp\": 1585747288,\n"} +{"Time":"2020-04-21T17:17:28.013176+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.01318+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"pulseNumber\": 39512025,\n"} +{"Time":"2020-04-21T17:17:28.013184+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.013187+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.013193+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.013197+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.0132+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromDepositReference\": \"insolar:1AlrjybdhmP59Fb1Pm-HSrQw6ROKsCa_ZAJ0dF0zReSU\"\n"} +{"Time":"2020-04-21T17:17:28.013203+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.013207+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.013211+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"index\": \"39512245:74\",\n"} +{"Time":"2020-04-21T17:17:28.013217+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"txID\": \"insolar:1AlrotewUoYcuCknA-ZJxc3uXJwtamJdYEdkkQ4DDnwU.record\",\n"} +{"Time":"2020-04-21T17:17:28.01322+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"amount\": \"259138779\",\n"} +{"Time":"2020-04-21T17:17:28.013224+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.013227+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"timestamp\": 1585747508,\n"} +{"Time":"2020-04-21T17:17:28.01323+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.013234+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"pulseNumber\": 39512245,\n"} +{"Time":"2020-04-21T17:17:28.013259+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.013267+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.013272+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.013276+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.013279+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.013283+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.013291+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.013294+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"index\": \"39514535:189\",\n"} +{"Time":"2020-04-21T17:17:28.013298+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"txID\": \"insolar:1Alrxp8WXLBz5QJ-I7dLIhgLXvG8_4AtN_HAJpvJwSM8.record\",\n"} +{"Time":"2020-04-21T17:17:28.013302+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"amount\": \"2000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.013305+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.013309+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"timestamp\": 1585749798,\n"} +{"Time":"2020-04-21T17:17:28.013314+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.013318+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"pulseNumber\": 39514535,\n"} +{"Time":"2020-04-21T17:17:28.013321+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.013324+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.013342+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.013356+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"toDepositReference\": \"insolar:1Alrxp0BAKzhrGg2_1pqXNMABGvcg-DUjpslMMZ-zz74\",\n"} +{"Time":"2020-04-21T17:17:28.013362+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.013367+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.01337+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Output":" ]\n"} +{"Time":"2020-04-21T17:17:28.013386+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange","Elapsed":0.33} +{"Time":"2020-04-21T17:17:28.013401+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsZero"} +{"Time":"2020-04-21T17:17:28.013407+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsZero","Output":"=== CONT TestGetTransactionsByPulseNumberRange_ToPulseIsZero\n"} +{"Time":"2020-04-21T17:17:28.013456+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsZero","Output":"--- PASS: TestGetTransactionsByPulseNumberRange_ToPulseIsZero (0.00s)\n"} +{"Time":"2020-04-21T17:17:28.013462+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsZero","Output":" pulse_transactions_range_test.go:64: C3996\tОшибка получения диапазона транзакций, если передан toPulse=0\n"} +{"Time":"2020-04-21T17:17:28.013467+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsZero","Elapsed":0} +{"Time":"2020-04-21T17:17:28.013471+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination"} +{"Time":"2020-04-21T17:17:28.013474+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":"=== CONT TestGetPulseRange_CheckPagination\n"} +{"Time":"2020-04-21T17:17:28.014887+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":"--- FAIL: TestGetTransactionsByPulseNumberRange_RandomReference (0.33s)\n"} +{"Time":"2020-04-21T17:17:28.014901+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" pulse_transactions_range_test.go:208: C4003\tОшибка получения диапазона транзакций мембера, если передан несуществующий референс\n"} +{"Time":"2020-04-21T17:17:28.014918+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.014928+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/admin-api/rpc\n"} +{"Time":"2020-04-21T17:17:28.014932+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:28.014936+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.01494+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.014943+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.014946+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:28.01495+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.014953+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.014957+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"id\": 5,\n"} +{"Time":"2020-04-21T17:17:28.014961+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"method\": \"node.getStatus\"\n"} +{"Time":"2020-04-21T17:17:28.014964+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.014967+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.01497+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" apilogger.go:54: http status: 404 Not Found\n"} +{"Time":"2020-04-21T17:17:28.014974+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.014977+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.01498+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"jsonrpc\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.014984+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"id\": null,\n"} +{"Time":"2020-04-21T17:17:28.014987+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:28.014993+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"networkState\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.015001+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"nodeState\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.015008+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"additionalNodeState\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.015013+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"origin\": {\n"} +{"Time":"2020-04-21T17:17:28.015021+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"reference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.015027+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"role\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.015032+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"isWorking\": false\n"} +{"Time":"2020-04-21T17:17:28.015043+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.015048+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"activeListSize\": 0,\n"} +{"Time":"2020-04-21T17:17:28.015054+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"workingListSize\": 0,\n"} +{"Time":"2020-04-21T17:17:28.015059+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"nodes\": null,\n"} +{"Time":"2020-04-21T17:17:28.015065+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"pulseNumber\": 0,\n"} +{"Time":"2020-04-21T17:17:28.015071+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"entropy\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.015079+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"version\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.015085+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.01509+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:28.015095+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:28.015102+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.015108+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:28.015115+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.01512+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:28.015125+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.015131+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.015136+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.015141+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" insolar_internal_api_wrapper.go:92: \n"} +{"Time":"2020-04-21T17:17:28.015147+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:92\n"} +{"Time":"2020-04-21T17:17:28.015152+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \t \t\t\t\tpulse_transactions_range_test.go:211\n"} +{"Time":"2020-04-21T17:17:28.015158+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \tError: \tExpected nil, but got: client.GenericOpenAPIError{body:[]uint8{0x7b, 0x20, 0x22, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x54, 0x68, 0x65, 0x20, 0x70, 0x61, 0x67, 0x65, 0x20, 0x79, 0x6f, 0x75, 0x27, 0x72, 0x65, 0x20, 0x6c, 0x6f, 0x6f, 0x6b, 0x69, 0x6e, 0x67, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x63, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x62, 0x65, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x22, 0x20, 0x7d}, error:\"404 Not Found\", model:interface {}(nil)}\n"} +{"Time":"2020-04-21T17:17:28.015169+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Output":" \tTest: \tTestGetTransactionsByPulseNumberRange_RandomReference\n"} +{"Time":"2020-04-21T17:17:28.015179+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_RandomReference","Elapsed":0.33} +{"Time":"2020-04-21T17:17:28.015186+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FromPulseIsMinimum_1"} +{"Time":"2020-04-21T17:17:28.015191+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FromPulseIsMinimum_1","Output":"=== CONT TestGetTransactionsByPulseNumberRange_FromPulseIsMinimum_1\n"} +{"Time":"2020-04-21T17:17:28.015198+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FromPulseIsMinimum_1","Output":"--- PASS: TestGetTransactionsByPulseNumberRange_FromPulseIsMinimum_1 (0.00s)\n"} +{"Time":"2020-04-21T17:17:28.015204+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FromPulseIsMinimum_1","Output":" pulse_transactions_range_test.go:54: C3995\tОшибка получения диапазона транзакций, если передан fromPulse=65536\n"} +{"Time":"2020-04-21T17:17:28.015321+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FromPulseIsMinimum_1","Elapsed":0} +{"Time":"2020-04-21T17:17:28.015331+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_LimitIsZero"} +{"Time":"2020-04-21T17:17:28.015337+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_LimitIsZero","Output":"=== CONT TestGetTransactionsByPulseNumberRange_LimitIsZero\n"} +{"Time":"2020-04-21T17:17:28.015344+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_LimitIsZero","Output":"--- PASS: TestGetTransactionsByPulseNumberRange_LimitIsZero (0.00s)\n"} +{"Time":"2020-04-21T17:17:28.01535+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_LimitIsZero","Output":" pulse_transactions_range_test.go:92: C3999\tОшибка получения диапазона транзакций, если передан limit=0\n"} +{"Time":"2020-04-21T17:17:28.01536+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_LimitIsZero","Elapsed":0} +{"Time":"2020-04-21T17:17:28.015365+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero"} +{"Time":"2020-04-21T17:17:28.015371+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":"=== CONT TestGetPulseRange_FromTimestampIsZero\n"} +{"Time":"2020-04-21T17:17:28.018461+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransferToAccount","Output":"--- FAIL: TestGetTransactionsByPulseNumberRange_FindTransferToAccount (0.33s)\n"} +{"Time":"2020-04-21T17:17:28.018472+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransferToAccount","Output":" pulse_transactions_range_test.go:150: C3993\tУспешное получение диапазона транзакций, если был трансфер с депозита на аккаунт\n"} +{"Time":"2020-04-21T17:17:28.018477+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransferToAccount","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:17:28.018481+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransferToAccount","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:17:28.018489+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransferToAccount","Output":" \t \t\t\t\tunhold_deposit_utils.go:18\n"} +{"Time":"2020-04-21T17:17:28.018511+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransferToAccount","Output":" \t \t\t\t\tpulse_transactions_range_test.go:151\n"} +{"Time":"2020-04-21T17:17:28.018524+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransferToAccount","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:17:28.018529+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransferToAccount","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:17:28.018534+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransferToAccount","Output":" \tTest: \tTestGetTransactionsByPulseNumberRange_FindTransferToAccount\n"} +{"Time":"2020-04-21T17:17:28.018538+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransferToAccount","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:17:28.018542+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransferToAccount","Elapsed":0.33} +{"Time":"2020-04-21T17:17:28.018546+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus"} +{"Time":"2020-04-21T17:17:28.01855+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":"=== CONT TestGetPulseRange_FromTimestampIsMinus\n"} +{"Time":"2020-04-21T17:17:28.052071+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse","Output":"--- PASS: TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse (0.37s)\n"} +{"Time":"2020-04-21T17:17:28.052106+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse","Output":" pulse_transactions_range_test.go:84: C3998\tОшибка получения диапазона транзакций, если передан fromPulse\u003etoPulse\n"} +{"Time":"2020-04-21T17:17:28.052135+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.052152+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/transactions/inPulseNumberRange?fromPulseNumber=65548\u0026limit=10\u0026toPulseNumber=65538\n"} +{"Time":"2020-04-21T17:17:28.052161+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse","Output":" apilogger.go:36: Query params: map[fromPulseNumber:[65548] limit:[10] toPulseNumber:[65538]]\n"} +{"Time":"2020-04-21T17:17:28.052169+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.052176+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.052183+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.052189+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse","Output":" apilogger.go:54: http status: 400 Bad Request\n"} +{"Time":"2020-04-21T17:17:28.052196+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.052203+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse","Output":" null\n"} +{"Time":"2020-04-21T17:17:28.052213+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_ToPulseIsGreaterFromPulse","Elapsed":0.37} +{"Time":"2020-04-21T17:17:28.052226+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange"} +{"Time":"2020-04-21T17:17:28.052233+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":"=== CONT TestGetPulseRange\n"} +{"Time":"2020-04-21T17:17:28.052738+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIsZero"} +{"Time":"2020-04-21T17:17:28.052773+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIsZero","Output":"=== CONT TestGetPulseRange_LimitIsZero\n"} +{"Time":"2020-04-21T17:17:28.0528+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_Migration","Output":"--- FAIL: TestGetTransactionsByPulseNumberRange_MemberFilter_Migration (0.37s)\n"} +{"Time":"2020-04-21T17:17:28.052812+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_Migration","Output":" pulse_transactions_range_test.go:223: C4004\tУспешное получение диапазона транзакций мембера, если была проведена миграция\n"} +{"Time":"2020-04-21T17:17:28.052827+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_Migration","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:17:28.052838+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_Migration","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:17:28.052865+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_Migration","Output":" \t \t\t\t\tpulse_transactions_range_test.go:224\n"} +{"Time":"2020-04-21T17:17:28.052874+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_Migration","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:17:28.052883+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_Migration","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:17:28.052891+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_Migration","Output":" \tTest: \tTestGetTransactionsByPulseNumberRange_MemberFilter_Migration\n"} +{"Time":"2020-04-21T17:17:28.0529+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_Migration","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:17:28.05291+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_Migration","Elapsed":0.37} +{"Time":"2020-04-21T17:17:28.05292+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindMigration","Output":"--- FAIL: TestGetTransactionsByPulseNumberRange_FindMigration (0.37s)\n"} +{"Time":"2020-04-21T17:17:28.052928+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindMigration","Output":" pulse_transactions_range_test.go:112: C3991\tУспешное получение диапазона транзакций, если была проведена миграция\n"} +{"Time":"2020-04-21T17:17:28.052938+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindMigration","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:17:28.052947+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindMigration","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:17:28.05297+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindMigration","Output":" \t \t\t\t\tpulse_transactions_range_test.go:113\n"} +{"Time":"2020-04-21T17:17:28.05298+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindMigration","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:17:28.052988+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindMigration","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:17:28.053015+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindMigration","Output":" \tTest: \tTestGetTransactionsByPulseNumberRange_FindMigration\n"} +{"Time":"2020-04-21T17:17:28.053033+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindMigration","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:17:28.053042+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindMigration","Elapsed":0.37} +{"Time":"2020-04-21T17:17:28.053048+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_ToTimestampIsZero"} +{"Time":"2020-04-21T17:17:28.053054+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_ToTimestampIsZero","Output":"=== CONT TestGetPulseRange_ToTimestampIsZero\n"} +{"Time":"2020-04-21T17:17:28.053065+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIsZero","Output":"--- SKIP: TestGetPulseRange_LimitIsZero (0.00s)\n"} +{"Time":"2020-04-21T17:17:28.053071+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIsZero","Output":" pulse_range_test.go:81: C3989\tОшибка получения диапазона финализированных пульсов, если передан limit=0\n"} +{"Time":"2020-04-21T17:17:28.053077+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIsZero","Output":" pulse_range_test.go:82: https://insolar.atlassian.net/browse/MN-194\n"} +{"Time":"2020-04-21T17:17:28.053083+03:00","Action":"skip","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_LimitIsZero","Elapsed":0} +{"Time":"2020-04-21T17:17:28.053088+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampGreaterToTimestamp"} +{"Time":"2020-04-21T17:17:28.053102+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampGreaterToTimestamp","Output":"=== CONT TestGetPulseRange_FromTimestampGreaterToTimestamp\n"} +{"Time":"2020-04-21T17:17:28.053113+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":"--- FAIL: TestGetPulseNumber (0.37s)\n"} +{"Time":"2020-04-21T17:17:28.053119+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" pulse_number_test.go:28: C3976\tУспешное получение номера последнего финализированного пульса\n"} +{"Time":"2020-04-21T17:17:28.053132+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.053137+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/admin-api/rpc\n"} +{"Time":"2020-04-21T17:17:28.053145+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:28.053151+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.053156+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.053161+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.053166+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:28.053172+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.053182+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.053204+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"id\": 1,\n"} +{"Time":"2020-04-21T17:17:28.053216+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"method\": \"node.getStatus\"\n"} +{"Time":"2020-04-21T17:17:28.053223+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.053229+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.053234+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" apilogger.go:54: http status: 404 Not Found\n"} +{"Time":"2020-04-21T17:17:28.053244+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.05325+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.053268+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"jsonrpc\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.053275+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"id\": null,\n"} +{"Time":"2020-04-21T17:17:28.05328+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:28.053286+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"networkState\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.053292+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"nodeState\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.053299+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"additionalNodeState\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.053307+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"origin\": {\n"} +{"Time":"2020-04-21T17:17:28.053313+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"reference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.053318+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"role\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.053324+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"isWorking\": false\n"} +{"Time":"2020-04-21T17:17:28.05333+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.053336+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"activeListSize\": 0,\n"} +{"Time":"2020-04-21T17:17:28.053342+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"workingListSize\": 0,\n"} +{"Time":"2020-04-21T17:17:28.05335+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"nodes\": null,\n"} +{"Time":"2020-04-21T17:17:28.053356+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"pulseNumber\": 0,\n"} +{"Time":"2020-04-21T17:17:28.053362+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"entropy\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.053368+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"version\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.053373+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.053379+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:28.053384+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:28.05339+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.053396+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:28.053402+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.053407+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:28.053434+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.053443+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.053451+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.053458+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" insolar_internal_api_wrapper.go:92: \n"} +{"Time":"2020-04-21T17:17:28.053463+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:92\n"} +{"Time":"2020-04-21T17:17:28.053468+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \t \t\t\t\tassert_genesis_deposits.go:94\n"} +{"Time":"2020-04-21T17:17:28.053472+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \t \t\t\t\tpulse_number_test.go:29\n"} +{"Time":"2020-04-21T17:17:28.053476+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \tError: \tExpected nil, but got: client.GenericOpenAPIError{body:[]uint8{0x7b, 0x20, 0x22, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x54, 0x68, 0x65, 0x20, 0x70, 0x61, 0x67, 0x65, 0x20, 0x79, 0x6f, 0x75, 0x27, 0x72, 0x65, 0x20, 0x6c, 0x6f, 0x6f, 0x6b, 0x69, 0x6e, 0x67, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x63, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x62, 0x65, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x22, 0x20, 0x7d}, error:\"404 Not Found\", model:interface {}(nil)}\n"} +{"Time":"2020-04-21T17:17:28.053488+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Output":" \tTest: \tTestGetPulseNumber\n"} +{"Time":"2020-04-21T17:17:28.053494+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseNumber","Elapsed":0.37} +{"Time":"2020-04-21T17:17:28.053501+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount","Output":"--- FAIL: TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount (0.37s)\n"} +{"Time":"2020-04-21T17:17:28.053507+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount","Output":" pulse_transactions_range_test.go:263: C4006\tУспешное получение диапазона транзакций мембера, если был трансфер с депозита на аккаунт\n"} +{"Time":"2020-04-21T17:17:28.053513+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:17:28.053517+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:17:28.053521+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount","Output":" \t \t\t\t\tunhold_deposit_utils.go:18\n"} +{"Time":"2020-04-21T17:17:28.053524+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount","Output":" \t \t\t\t\tpulse_transactions_range_test.go:264\n"} +{"Time":"2020-04-21T17:17:28.053535+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:17:28.053541+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:17:28.053546+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount","Output":" \tTest: \tTestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount\n"} +{"Time":"2020-04-21T17:17:28.053552+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:17:28.053564+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransferToAccount","Elapsed":0.37} +{"Time":"2020-04-21T17:17:28.053571+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":"--- FAIL: TestGetTransactionsByPulseNumberRange_CheckPagination (0.37s)\n"} +{"Time":"2020-04-21T17:17:28.053577+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" pulse_transactions_range_test.go:161: C4001\tУспешное получение диапазона транзакций, проверка пагинации\n"} +{"Time":"2020-04-21T17:17:28.053582+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.053591+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/admin-api/rpc\n"} +{"Time":"2020-04-21T17:17:28.053595+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:28.0536+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.053606+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.053609+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.053613+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:28.053618+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.053622+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.053625+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"id\": 6,\n"} +{"Time":"2020-04-21T17:17:28.053629+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"method\": \"node.getStatus\"\n"} +{"Time":"2020-04-21T17:17:28.053634+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.05364+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.053644+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" apilogger.go:54: http status: 404 Not Found\n"} +{"Time":"2020-04-21T17:17:28.053648+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.053651+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.053662+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"jsonrpc\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.053668+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"id\": null,\n"} +{"Time":"2020-04-21T17:17:28.053675+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:28.053687+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"networkState\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.053693+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"nodeState\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.053701+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"additionalNodeState\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.053706+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"origin\": {\n"} +{"Time":"2020-04-21T17:17:28.053712+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"reference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.053718+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"role\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.053722+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"isWorking\": false\n"} +{"Time":"2020-04-21T17:17:28.053725+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.053731+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"activeListSize\": 0,\n"} +{"Time":"2020-04-21T17:17:28.053736+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"workingListSize\": 0,\n"} +{"Time":"2020-04-21T17:17:28.053741+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"nodes\": null,\n"} +{"Time":"2020-04-21T17:17:28.053746+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"pulseNumber\": 0,\n"} +{"Time":"2020-04-21T17:17:28.05375+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"entropy\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.053754+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"version\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.053757+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.053762+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:28.053766+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:28.053769+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.053773+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:28.053778+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.053783+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:28.053787+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.05379+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.053795+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.053799+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" insolar_internal_api_wrapper.go:92: \n"} +{"Time":"2020-04-21T17:17:28.053802+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:92\n"} +{"Time":"2020-04-21T17:17:28.053806+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \t \t\t\t\tpulse_transactions_range_test.go:162\n"} +{"Time":"2020-04-21T17:17:28.053812+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \tError: \tExpected nil, but got: client.GenericOpenAPIError{body:[]uint8{0x7b, 0x20, 0x22, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x54, 0x68, 0x65, 0x20, 0x70, 0x61, 0x67, 0x65, 0x20, 0x79, 0x6f, 0x75, 0x27, 0x72, 0x65, 0x20, 0x6c, 0x6f, 0x6f, 0x6b, 0x69, 0x6e, 0x67, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x63, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x62, 0x65, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x22, 0x20, 0x7d}, error:\"404 Not Found\", model:interface {}(nil)}\n"} +{"Time":"2020-04-21T17:17:28.053818+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Output":" \tTest: \tTestGetTransactionsByPulseNumberRange_CheckPagination\n"} +{"Time":"2020-04-21T17:17:28.089594+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_CheckPagination","Elapsed":0.37} +{"Time":"2020-04-21T17:17:28.089639+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":"--- FAIL: TestGetTransactionsByPulseNumberRange_FindTransfer (0.40s)\n"} +{"Time":"2020-04-21T17:17:28.08965+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" pulse_transactions_range_test.go:136: C3992\tУспешное получение диапазона транзакций, если был трансфер\n"} +{"Time":"2020-04-21T17:17:28.08966+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:28.089671+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" insolar_api_wrapper.go:126: Received seed: VejB0qud5cu4Mp6b8au++3SWPSWIOBOyzqadJtvuMz0=\n"} +{"Time":"2020-04-21T17:17:28.089677+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.089682+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:28.089688+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:28.089701+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.089706+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.089712+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.089717+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:28.089725+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.08973+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.089736+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"id\": 10,\n"} +{"Time":"2020-04-21T17:17:28.089741+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:28.089747+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.089752+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.089757+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.089762+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.089769+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.089774+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.08978+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"id\": 10,\n"} +{"Time":"2020-04-21T17:17:28.089785+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:28.089791+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"seed\": \"VejB0qud5cu4Mp6b8au++3SWPSWIOBOyzqadJtvuMz0=\"\n"} +{"Time":"2020-04-21T17:17:28.089798+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.089803+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:28.089808+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:28.089814+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.089819+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:28.089824+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.089829+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:28.089834+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.089839+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.089844+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.089849+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:28.089859+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.089864+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:28.08987+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:28.089875+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEQCICBiFYgaChkIt/ViCBvKfBDKfkdR5B36z0R0SNFz6qoyAiAzLbez6VKiPQU2WaWmHmfgCPclA8oSvxhiT17bzmuKyA==]\n"} +{"Time":"2020-04-21T17:17:28.089881+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.089886+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.089891+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.089901+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:41: -H Digest: [SHA-256=oxJHpPC9MLjMhdeSK7QqRomT4qMAb95LB38qiKKREtI=]\n"} +{"Time":"2020-04-21T17:17:28.089906+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:28.089913+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.089918+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.089923+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"id\": 11,\n"} +{"Time":"2020-04-21T17:17:28.089928+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:28.089934+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:28.089939+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"seed\": \"VejB0qud5cu4Mp6b8au++3SWPSWIOBOyzqadJtvuMz0=\",\n"} +{"Time":"2020-04-21T17:17:28.089945+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:17:28.089951+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEpcmtLdj1BPiviPs4i/Q8G0zqhwNi\\n4Cc4GZTnI8KqGIOF+A9zCGIIfQncLhMVoCOgFm7Y2C/Ee82YZ/cZ28V+qw==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:28.089957+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.089962+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.089968+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.089973+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.089978+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.089983+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.089988+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.089995+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"id\": 11,\n"} +{"Time":"2020-04-21T17:17:28.09+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:28.090006+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:28.090014+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.09002+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.090025+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.090031+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.090036+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.090041+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:28.090047+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:28.090052+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.090057+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"traceID\": \"ec45420f5c08656a2195cb56b4a0e7ad\",\n"} +{"Time":"2020-04-21T17:17:28.090063+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:28.090069+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:28.090074+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" ]\n"} +{"Time":"2020-04-21T17:17:28.09008+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.090084+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:28.09009+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:28.090095+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.0901+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.09011+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:28.090115+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:28.090121+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \t \t\t\t\tinsolar_api_wrapper.go:159\n"} +{"Time":"2020-04-21T17:17:28.090127+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \t \t\t\t\tpulse_transactions_range_test.go:137\n"} +{"Time":"2020-04-21T17:17:28.090132+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:28.090138+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \tTest: \tTestGetTransactionsByPulseNumberRange_FindTransfer\n"} +{"Time":"2020-04-21T17:17:28.090143+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:28.090156+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_FindTransfer","Elapsed":0.4} +{"Time":"2020-04-21T17:17:28.090164+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":"--- FAIL: TestGetTransactionsByPulseNumberRange_MemberFilter (0.40s)\n"} +{"Time":"2020-04-21T17:17:28.090266+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" pulse_transactions_range_test.go:193: C4002\tУспешное получение диапазона транзакций мембера\n"} +{"Time":"2020-04-21T17:17:28.090275+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:28.09028+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" insolar_api_wrapper.go:126: Received seed: KEiU3NGLBSxmMU4FWNnNl5LClEhqN+n1G2vbnYJmFgA=\n"} +{"Time":"2020-04-21T17:17:28.090285+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.090294+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:28.090299+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:28.090306+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.090312+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.090318+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.090323+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:28.090327+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.090332+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.090337+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"id\": 9,\n"} +{"Time":"2020-04-21T17:17:28.090345+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:28.09035+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.090355+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.090362+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.090367+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.090372+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.090377+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.090382+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"id\": 9,\n"} +{"Time":"2020-04-21T17:17:28.09039+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:28.090395+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"seed\": \"KEiU3NGLBSxmMU4FWNnNl5LClEhqN+n1G2vbnYJmFgA=\"\n"} +{"Time":"2020-04-21T17:17:28.090401+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.090412+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:28.09042+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:28.09043+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.090436+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:28.090443+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.090448+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:28.090453+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.090458+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.090463+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.090468+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:28.090473+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.090478+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:28.090484+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:28.090494+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.0905+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:41: -H Digest: [SHA-256=b3srVk9CdBVDwcJ+JOYgAJzQ8LnpOsIVk/4zjqle0L8=]\n"} +{"Time":"2020-04-21T17:17:28.090505+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEUCIChRI/Z1r2DR/tFfUb5lX8nDp5MFNDEL6LgM2tNlEG34AiEA1VGvH44/7rc03+FtbS0QPaTQdin5SskLGAeYDGnkq/U=]\n"} +{"Time":"2020-04-21T17:17:28.090512+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.090517+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.090522+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:28.090527+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.090532+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.090537+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"id\": 12,\n"} +{"Time":"2020-04-21T17:17:28.090542+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:28.090548+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:28.090554+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"seed\": \"KEiU3NGLBSxmMU4FWNnNl5LClEhqN+n1G2vbnYJmFgA=\",\n"} +{"Time":"2020-04-21T17:17:28.090563+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:17:28.090568+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEEyrt/kancUQIxdO/W7mn76vDqWjj\\nwrk/BOffH3rwVveeVVDHiMwk8ae9MzgIqhtZ/N11QwH2IDDt7LmdlNl+cA==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:28.090574+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.090579+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.090584+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.09059+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.090595+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.0906+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.090605+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.090611+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"id\": 12,\n"} +{"Time":"2020-04-21T17:17:28.090616+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:28.090625+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:28.090632+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.090637+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.090643+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.090648+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.090653+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.090658+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:28.090664+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:28.090669+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.090674+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"traceID\": \"9041c542c76c0ae7a1d0abbf12fe6eb1\",\n"} +{"Time":"2020-04-21T17:17:28.090684+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:28.09069+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:28.090695+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" ]\n"} +{"Time":"2020-04-21T17:17:28.0907+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.090707+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:28.090712+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:28.090718+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.090723+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.090728+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:28.090733+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:28.090739+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \t \t\t\t\tinsolar_api_wrapper.go:159\n"} +{"Time":"2020-04-21T17:17:28.090745+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \t \t\t\t\tpulse_transactions_range_test.go:194\n"} +{"Time":"2020-04-21T17:17:28.09075+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:28.090756+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \tTest: \tTestGetTransactionsByPulseNumberRange_MemberFilter\n"} +{"Time":"2020-04-21T17:17:28.090762+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:28.123506+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter","Elapsed":0.4} +{"Time":"2020-04-21T17:17:28.123526+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampGreaterToTimestamp","Output":"--- PASS: TestGetPulseRange_FromTimestampGreaterToTimestamp (0.07s)\n"} +{"Time":"2020-04-21T17:17:28.123532+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampGreaterToTimestamp","Output":" pulse_range_test.go:70: C3988\tОшибка получения диапазона финализированных пульсов, если передан fromTimestamp\u003etoTimestamp\n"} +{"Time":"2020-04-21T17:17:28.123537+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampGreaterToTimestamp","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.123542+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampGreaterToTimestamp","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/pulse/range?fromTimestamp=1587478648\u0026limit=10\u0026toTimestamp=1587475048\n"} +{"Time":"2020-04-21T17:17:28.123558+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampGreaterToTimestamp","Output":" apilogger.go:36: Query params: map[fromTimestamp:[1587478648] limit:[10] toTimestamp:[1587475048]]\n"} +{"Time":"2020-04-21T17:17:28.123569+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampGreaterToTimestamp","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.123573+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampGreaterToTimestamp","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.123577+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampGreaterToTimestamp","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.12358+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampGreaterToTimestamp","Output":" apilogger.go:54: http status: 400 Bad Request\n"} +{"Time":"2020-04-21T17:17:28.123585+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampGreaterToTimestamp","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.123589+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampGreaterToTimestamp","Output":" null\n"} +{"Time":"2020-04-21T17:17:28.146188+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampGreaterToTimestamp","Elapsed":0.07} +{"Time":"2020-04-21T17:17:28.146218+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":"--- FAIL: TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer (0.46s)\n"} +{"Time":"2020-04-21T17:17:28.146227+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" pulse_transactions_range_test.go:248: C4005\tУспешное получение диапазона транзакций мембера, если был трансфер\n"} +{"Time":"2020-04-21T17:17:28.146234+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:28.14624+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" insolar_api_wrapper.go:126: Received seed: yEpvKECRQUusDmwKGJaK0d7Q3mV5xuEPlKdGkWypT60=\n"} +{"Time":"2020-04-21T17:17:28.146246+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.146251+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:28.146257+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:28.146262+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.146275+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.146281+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.146286+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:28.146291+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.146296+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.146301+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"id\": 8,\n"} +{"Time":"2020-04-21T17:17:28.146307+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:28.146312+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.146317+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.146322+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.146327+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.146332+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.146343+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.146348+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"id\": 8,\n"} +{"Time":"2020-04-21T17:17:28.146353+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:28.146358+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"seed\": \"yEpvKECRQUusDmwKGJaK0d7Q3mV5xuEPlKdGkWypT60=\"\n"} +{"Time":"2020-04-21T17:17:28.146366+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.14638+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:28.146385+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:28.146396+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.146402+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:28.146407+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.146412+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:28.146417+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.146422+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.146427+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.146432+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:28.146436+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.146451+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:28.146457+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:28.146462+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.146467+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.146472+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:41: -H Digest: [SHA-256=1SaH2dhniBBVWW3tOtSLeU5JSsmWu8Gq1bzZhZOXOmM=]\n"} +{"Time":"2020-04-21T17:17:28.146477+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEQCIC8VKpQacrqnRAPZMfpe1/3pPfehjDx2K+lmv8FjRa/bAiAOK+au9DglZVDkp4WGGHicqJoOrFEuw1t7H5DQmKoD6w==]\n"} +{"Time":"2020-04-21T17:17:28.146484+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.146494+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:28.146499+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.146504+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.146509+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"id\": 13,\n"} +{"Time":"2020-04-21T17:17:28.146514+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:28.146519+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:28.146524+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"seed\": \"yEpvKECRQUusDmwKGJaK0d7Q3mV5xuEPlKdGkWypT60=\",\n"} +{"Time":"2020-04-21T17:17:28.146532+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:17:28.146537+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEmr2+tk6zXK6hpJV5WysyVzGUKY/u\\nUMCYBfTpORPIFppjfs3lxJVEjESwOzWejNvpSZiq1lMlkZXLWC9fCAHsOA==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:28.146544+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.146549+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.146553+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.146558+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.146563+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.146568+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.146573+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.146578+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"id\": 13,\n"} +{"Time":"2020-04-21T17:17:28.146583+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:28.146588+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:28.146593+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.146598+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.146603+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.146608+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.146613+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.146618+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:28.146623+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:28.146628+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.146633+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"traceID\": \"f240b47d3073844701defafb92ad7d80\",\n"} +{"Time":"2020-04-21T17:17:28.146638+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:28.146643+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:28.146648+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" ]\n"} +{"Time":"2020-04-21T17:17:28.146653+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.146657+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:28.146662+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:28.146668+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.146672+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.146677+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:28.146682+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:28.146687+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \t \t\t\t\tinsolar_api_wrapper.go:159\n"} +{"Time":"2020-04-21T17:17:28.146697+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \t \t\t\t\tpulse_transactions_range_test.go:249\n"} +{"Time":"2020-04-21T17:17:28.146702+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:28.146709+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \tTest: \tTestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer\n"} +{"Time":"2020-04-21T17:17:28.146715+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:28.414014+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":"--- PASS: TestGetClosedTransactionsSortReverse (0.45s)\n"} +{"Time":"2020-04-21T17:17:28.414039+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" closed_transactions_test.go:64: C903\tПолучение списка закрытых транзакций - сортировка в обратном порядке\n"} +{"Time":"2020-04-21T17:17:28.414048+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.414054+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/transactions/closed?limit=1\u0026order=reverse\n"} +{"Time":"2020-04-21T17:17:28.41406+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:36: Query params: map[limit:[1] order:[reverse]]\n"} +{"Time":"2020-04-21T17:17:28.414065+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.41407+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.414075+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.41408+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.414085+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.41409+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" [\n"} +{"Time":"2020-04-21T17:17:28.414095+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.4141+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903580:274\",\n"} +{"Time":"2020-04-21T17:17:28.414105+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjnN7hjta4AvbkjTHTyHXNn2ac4GeJporlWDn_-bI.record\",\n"} +{"Time":"2020-04-21T17:17:28.414111+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.414116+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138843,\n"} +{"Time":"2020-04-21T17:17:28.414121+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.414126+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903580,\n"} +{"Time":"2020-04-21T17:17:28.414131+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.414136+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjnAIqcWkJlgvF-Miimln2IwaFLdjPbwQhq74D0qY\",\n"} +{"Time":"2020-04-21T17:17:28.414146+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.414153+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.41416+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.414165+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.41417+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" ]\n"} +{"Time":"2020-04-21T17:17:28.414181+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.414186+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/transactions/closed?limit=200\u0026order=reverse\n"} +{"Time":"2020-04-21T17:17:28.414192+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:36: Query params: map[limit:[200] order:[reverse]]\n"} +{"Time":"2020-04-21T17:17:28.414197+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.414202+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.414207+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.414212+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.414225+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.41423+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" [\n"} +{"Time":"2020-04-21T17:17:28.414235+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.41424+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903580:274\",\n"} +{"Time":"2020-04-21T17:17:28.414245+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjnN7hjta4AvbkjTHTyHXNn2ac4GeJporlWDn_-bI.record\",\n"} +{"Time":"2020-04-21T17:17:28.41425+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.414255+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138843,\n"} +{"Time":"2020-04-21T17:17:28.41426+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.414265+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903580,\n"} +{"Time":"2020-04-21T17:17:28.41427+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.414275+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjnAIqcWkJlgvF-Miimln2IwaFLdjPbwQhq74D0qY\",\n"} +{"Time":"2020-04-21T17:17:28.41428+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.414285+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.41429+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.414296+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.414302+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.414307+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903580:238\",\n"} +{"Time":"2020-04-21T17:17:28.414313+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjnKMDJXkXGWvYIb03MdiTZum4I6kbMceLWNmvleo.record\",\n"} +{"Time":"2020-04-21T17:17:28.414318+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.414323+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138843,\n"} +{"Time":"2020-04-21T17:17:28.414328+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.414333+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903580,\n"} +{"Time":"2020-04-21T17:17:28.414337+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.414342+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjnFQik-Zyl_YdCgRMuf9pRg9HAN8XEax4dFMWu3M\",\n"} +{"Time":"2020-04-21T17:17:28.41435+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.414355+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.414365+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.414371+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.414376+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.41438+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903580:98\",\n"} +{"Time":"2020-04-21T17:17:28.414385+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjnLlTQzZ_M0k2UOTWzabtPwuXwyJfnGoa3hlN4lU.record\",\n"} +{"Time":"2020-04-21T17:17:28.41439+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100\",\n"} +{"Time":"2020-04-21T17:17:28.414396+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.414401+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138843,\n"} +{"Time":"2020-04-21T17:17:28.414406+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.41441+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903580,\n"} +{"Time":"2020-04-21T17:17:28.414415+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.41442+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjnILrG699qqRxn1TlLJghaKQzohwShoJg8VgQy6g\",\n"} +{"Time":"2020-04-21T17:17:28.414425+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.414431+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AnAjnJ6uBROFesh7cEhb3ogZ_-qInfK2wHx75wc6xAg\",\n"} +{"Time":"2020-04-21T17:17:28.414436+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.414448+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.414453+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.414457+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903570:332\",\n"} +{"Time":"2020-04-21T17:17:28.414462+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjkgLIoH0ePOPMPLofYi3Ukc8P3pb8IaLoZsuyii0.record\",\n"} +{"Time":"2020-04-21T17:17:28.414473+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.414478+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138833,\n"} +{"Time":"2020-04-21T17:17:28.414484+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.41449+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903570,\n"} +{"Time":"2020-04-21T17:17:28.414494+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.4145+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjkpJovwhJ3ReiqH_oueJBc19eLsCb_gx16HbAiFo\",\n"} +{"Time":"2020-04-21T17:17:28.414507+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.414512+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.414517+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.414523+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.414528+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.414533+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903570:311\",\n"} +{"Time":"2020-04-21T17:17:28.414538+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjkq1r-s_Z7x1F5NpKtrEa649pQmNncT0SNI3ZaDA.record\",\n"} +{"Time":"2020-04-21T17:17:28.414543+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.414553+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138833,\n"} +{"Time":"2020-04-21T17:17:28.414558+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.414563+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903570,\n"} +{"Time":"2020-04-21T17:17:28.414567+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.414572+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjkqdRXGgv7Mxn6ar3yWObVlUUbpNy8dA8Rg7mGGc\",\n"} +{"Time":"2020-04-21T17:17:28.414577+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.414582+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.414587+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.414592+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.414597+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.414601+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903570:173\",\n"} +{"Time":"2020-04-21T17:17:28.414606+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjki9VdBq6gGK22XDkfwLiA_JbJQGSd2PEHhzaMMo.record\",\n"} +{"Time":"2020-04-21T17:17:28.414611+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.414616+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138833,\n"} +{"Time":"2020-04-21T17:17:28.414621+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.414626+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903570,\n"} +{"Time":"2020-04-21T17:17:28.414631+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.414635+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjkqnPQwi4LP-9TEhAbeBCKRvMgg32U0TOwAHKaqg\",\n"} +{"Time":"2020-04-21T17:17:28.414641+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.414646+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.414651+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.414655+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.41466+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.414665+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903570:163\",\n"} +{"Time":"2020-04-21T17:17:28.41467+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjkpxVu2_V-fOgZnqDAIY2disHt934Dt6Xys0J5TM.record\",\n"} +{"Time":"2020-04-21T17:17:28.414675+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.41468+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138833,\n"} +{"Time":"2020-04-21T17:17:28.414685+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.414689+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903570,\n"} +{"Time":"2020-04-21T17:17:28.414694+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.414699+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjkmt_-u1vjWSrM1uvvYfe9jJEVHRjkORCy8C_Y6A\",\n"} +{"Time":"2020-04-21T17:17:28.414704+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.414709+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.414714+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.414719+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.414724+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.414728+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903560:238\",\n"} +{"Time":"2020-04-21T17:17:28.414733+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjiH2ek8xfvYt_p0ryUBVfpvh7699jePMEH-7pTWU.record\",\n"} +{"Time":"2020-04-21T17:17:28.414739+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10\",\n"} +{"Time":"2020-04-21T17:17:28.414744+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.414748+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138823,\n"} +{"Time":"2020-04-21T17:17:28.414753+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.414758+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903560,\n"} +{"Time":"2020-04-21T17:17:28.414763+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.414768+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjiKTxo3DzBfql0Y-Cj12JBvMjKPg6My7VBIvECk4\",\n"} +{"Time":"2020-04-21T17:17:28.414778+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.414783+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AnAjiNNv1jan0YJSFzpvjWKY6c0NXieGYBltg8-qxmQ\",\n"} +{"Time":"2020-04-21T17:17:28.414788+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.414793+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.414798+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.414802+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903560:169\",\n"} +{"Time":"2020-04-21T17:17:28.414807+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjiL8_iG3EzOF71GvuGU-pOxNt-Fxc_ZZ0gY7_tjY.record\",\n"} +{"Time":"2020-04-21T17:17:28.414812+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000\",\n"} +{"Time":"2020-04-21T17:17:28.414821+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.414831+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138823,\n"} +{"Time":"2020-04-21T17:17:28.414836+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.414846+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903560,\n"} +{"Time":"2020-04-21T17:17:28.414851+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.414856+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjiKTxo3DzBfql0Y-Cj12JBvMjKPg6My7VBIvECk4\",\n"} +{"Time":"2020-04-21T17:17:28.414861+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.414866+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.41487+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AnAjiNNv1jan0YJSFzpvjWKY6c0NXieGYBltg8-qxmQ\"\n"} +{"Time":"2020-04-21T17:17:28.414875+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.41488+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.414885+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903550:45\",\n"} +{"Time":"2020-04-21T17:17:28.414889+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjfkkdoXD0xpE5OqUZxpHE_ySrVH4H9lyWC9po_oA.record\",\n"} +{"Time":"2020-04-21T17:17:28.414895+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100\",\n"} +{"Time":"2020-04-21T17:17:28.4149+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.414905+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138813,\n"} +{"Time":"2020-04-21T17:17:28.414914+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.414919+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903550,\n"} +{"Time":"2020-04-21T17:17:28.414924+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.414929+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjag9p_mombu96424z4omrXqTwTE0ck2BO5H9YMxM\",\n"} +{"Time":"2020-04-21T17:17:28.414934+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.41494+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AnAjalbcjN3ooToYdfLxeWF74F_8I0yrUJwm_pNKzrQ\",\n"} +{"Time":"2020-04-21T17:17:28.414945+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.414949+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.414954+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.414959+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903530:267\",\n"} +{"Time":"2020-04-21T17:17:28.414964+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjas4nRhL7drClF8pu-R_f59sZ8r-6FbRQbtK5GNo.record\",\n"} +{"Time":"2020-04-21T17:17:28.414968+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.414973+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138793,\n"} +{"Time":"2020-04-21T17:17:28.414978+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.414983+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903530,\n"} +{"Time":"2020-04-21T17:17:28.414988+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.414992+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjasZyEIouDucJH0Nt8radBLfyNhDuRyaAzH-OcRM\",\n"} +{"Time":"2020-04-21T17:17:28.414998+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.415007+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.415012+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.415017+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.415022+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.415026+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903520:338\",\n"} +{"Time":"2020-04-21T17:17:28.415033+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjYK0nvB_IcaijwPnk7rs6Bwurodl8z-cbrOjF2Xo.record\",\n"} +{"Time":"2020-04-21T17:17:28.415038+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.415043+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138783,\n"} +{"Time":"2020-04-21T17:17:28.415048+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.415052+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903520,\n"} +{"Time":"2020-04-21T17:17:28.415057+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.415062+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjYEb33vnlVwKNdxL-0vu6ftEKYKsugYeucFlWnXE\",\n"} +{"Time":"2020-04-21T17:17:28.415067+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.415072+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.415077+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.415081+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.415086+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.415091+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903520:221\",\n"} +{"Time":"2020-04-21T17:17:28.415096+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjYD_OifSUkLE6lvLcd0sZw4L2-hs6YKfQTR6mqq0.record\",\n"} +{"Time":"2020-04-21T17:17:28.415101+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10\",\n"} +{"Time":"2020-04-21T17:17:28.415105+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.41511+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138783,\n"} +{"Time":"2020-04-21T17:17:28.415115+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.41512+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903520,\n"} +{"Time":"2020-04-21T17:17:28.415124+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.415129+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjYLd-wTZarN9S3VigGzbz4TQjaMh0QBu8Zcfymu4\",\n"} +{"Time":"2020-04-21T17:17:28.415134+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.41514+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AnAjYD2vJsCvuHogjTUdVMHd2hSFa0wP3m8uGxD94KU\",\n"} +{"Time":"2020-04-21T17:17:28.415146+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.415158+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.415167+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.415172+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903510:242\",\n"} +{"Time":"2020-04-21T17:17:28.415177+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjVgccqOQP4tbKaPZncaUqOIUUOG4FCMfcj78jT68.record\",\n"} +{"Time":"2020-04-21T17:17:28.415183+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"1000\",\n"} +{"Time":"2020-04-21T17:17:28.415188+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.415193+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138773,\n"} +{"Time":"2020-04-21T17:17:28.415197+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.415202+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903510,\n"} +{"Time":"2020-04-21T17:17:28.415207+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.415212+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjTLccZ7EHgolETgzFiUew02-3iEhw5VQXUp0p4ac\",\n"} +{"Time":"2020-04-21T17:17:28.415217+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.415222+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AnAjVmg-hvpWrReJ6euwmfKTyWkjmBJw4226k1ENAcs\",\n"} +{"Time":"2020-04-21T17:17:28.415227+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.415232+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.415236+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.415242+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903510:145\",\n"} +{"Time":"2020-04-21T17:17:28.41525+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjVpBLwqZ7ZAGFT9xFp7z5JoOTObLsh6kgwK8r0Sw.record\",\n"} +{"Time":"2020-04-21T17:17:28.415255+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"272\",\n"} +{"Time":"2020-04-21T17:17:28.41526+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.415266+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138773,\n"} +{"Time":"2020-04-21T17:17:28.415273+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.415281+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903510,\n"} +{"Time":"2020-04-21T17:17:28.415288+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.415293+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjJOwmcIlGL-6fSSeuoc9TJE9tfIVgXzm-CFZDPdE\",\n"} +{"Time":"2020-04-21T17:17:28.415297+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.415302+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.415307+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AnAjOG_xkmKKgVjv12WYsoAsC2a9Dbpt-b-syJi_meQ\"\n"} +{"Time":"2020-04-21T17:17:28.415312+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.415317+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.415322+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903490:113\",\n"} +{"Time":"2020-04-21T17:17:28.415327+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjQiZ76VP_Q1O4wneC9dr2aZ6aDOXXmfRR5w67OIA.record\",\n"} +{"Time":"2020-04-21T17:17:28.415332+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.415336+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.415341+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138753,\n"} +{"Time":"2020-04-21T17:17:28.415346+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.415356+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903490,\n"} +{"Time":"2020-04-21T17:17:28.415361+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.415366+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjQtgeBgSfPj-cTy8DKA4p4C3yVCTC3XawvUalRIw\",\n"} +{"Time":"2020-04-21T17:17:28.415371+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.415377+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AnAjQvwJlz1m1H3uEr_71j6UjAlJFgD9MIY3UNbmpDE\",\n"} +{"Time":"2020-04-21T17:17:28.415382+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.415387+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.415392+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.415396+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903490:9\",\n"} +{"Time":"2020-04-21T17:17:28.415401+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjQtWKZmo95Mc6XsPTSiZF-iAisoQe5nGOthy3yeI.record\",\n"} +{"Time":"2020-04-21T17:17:28.415408+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.415413+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138753,\n"} +{"Time":"2020-04-21T17:17:28.415418+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.415422+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903490,\n"} +{"Time":"2020-04-21T17:17:28.415427+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.415432+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjQpbXC0QD45BUGVM1wkdikfvFEEb_OWB7CznTWsU\",\n"} +{"Time":"2020-04-21T17:17:28.415437+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.415442+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.415447+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.415457+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.415462+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.415467+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903480:481\",\n"} +{"Time":"2020-04-21T17:17:28.415472+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjOGSkd5MzyXH7A2NztMrss8Qfx6i-v64Dng4Xfb0.record\",\n"} +{"Time":"2020-04-21T17:17:28.415477+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.415484+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138743,\n"} +{"Time":"2020-04-21T17:17:28.415493+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.415498+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903480,\n"} +{"Time":"2020-04-21T17:17:28.415503+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.415508+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjOCOA2oGsGS9EP71Ht0JZIVlZAYoLfEDdwEoQc-0\",\n"} +{"Time":"2020-04-21T17:17:28.415513+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.415518+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.415523+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.415529+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.415533+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.415538+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903480:411\",\n"} +{"Time":"2020-04-21T17:17:28.415543+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjOPZmpE8XNAfqinjPo-hRHyA8sPcynFPxoOxnfmo.record\",\n"} +{"Time":"2020-04-21T17:17:28.415554+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.415559+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138743,\n"} +{"Time":"2020-04-21T17:17:28.415564+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.415569+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903480,\n"} +{"Time":"2020-04-21T17:17:28.415574+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.415579+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjOBktX-GOjOmGN0m4kY3a6AZBu9YpIlgp54GtV1g\",\n"} +{"Time":"2020-04-21T17:17:28.415584+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.415589+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.415594+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.415599+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.415603+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.415608+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903480:346\",\n"} +{"Time":"2020-04-21T17:17:28.415613+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjOG9M3m1CoonwTOnmCkghq4y5lGUTopYpKFJ1Jpw.record\",\n"} +{"Time":"2020-04-21T17:17:28.415618+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.415623+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138743,\n"} +{"Time":"2020-04-21T17:17:28.415628+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.415635+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903480,\n"} +{"Time":"2020-04-21T17:17:28.41564+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.415645+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjOKBMBQ4a3HoB8jVPLbw_DUs-O6vqFVDpKwDTZV4\",\n"} +{"Time":"2020-04-21T17:17:28.41565+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.415655+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.41566+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.415665+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.41567+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.415674+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903480:268\",\n"} +{"Time":"2020-04-21T17:17:28.415679+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjOCXHCG8ld5oTVbzeG33bWmv5gdxQjevdn_ZuNOc.record\",\n"} +{"Time":"2020-04-21T17:17:28.415684+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.415689+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138743,\n"} +{"Time":"2020-04-21T17:17:28.415694+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.415699+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903480,\n"} +{"Time":"2020-04-21T17:17:28.415704+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.415709+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjONFJ8IRwQzNA_7ykzx9EyecAGJ0Ssj4vtfin0eA\",\n"} +{"Time":"2020-04-21T17:17:28.415714+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.415719+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.415724+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.415728+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.415733+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.415738+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903480:235\",\n"} +{"Time":"2020-04-21T17:17:28.415742+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjOG3yUs8AYxgUJwobSCZUNOGrDTees09NLPrP5oE.record\",\n"} +{"Time":"2020-04-21T17:17:28.415747+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"40000000\",\n"} +{"Time":"2020-04-21T17:17:28.415752+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.415757+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138743,\n"} +{"Time":"2020-04-21T17:17:28.415767+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.415772+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903480,\n"} +{"Time":"2020-04-21T17:17:28.415776+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.415781+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjJOwmcIlGL-6fSSeuoc9TJE9tfIVgXzm-CFZDPdE\",\n"} +{"Time":"2020-04-21T17:17:28.415787+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.415792+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AnAjOG_xkmKKgVjv12WYsoAsC2a9Dbpt-b-syJi_meQ\",\n"} +{"Time":"2020-04-21T17:17:28.415797+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.415802+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.415806+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.415811+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903480:199\",\n"} +{"Time":"2020-04-21T17:17:28.415818+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjONVj-5SrsBfGIFCcm95DTP2DObLTrWXihfYVyZo.record\",\n"} +{"Time":"2020-04-21T17:17:28.415823+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.415828+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138743,\n"} +{"Time":"2020-04-21T17:17:28.415833+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.415837+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903480,\n"} +{"Time":"2020-04-21T17:17:28.415842+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.415847+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjOMufKTaTO1mwdyeMSAnR2LAPMXN1JQUQslTZHHs\",\n"} +{"Time":"2020-04-21T17:17:28.415852+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.415857+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.415862+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.415867+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.415872+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.415876+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903470:692\",\n"} +{"Time":"2020-04-21T17:17:28.415881+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjJH_RDvh_izMhM-jG-a7-WHZ1m0-yvOgG386T8Y0.record\",\n"} +{"Time":"2020-04-21T17:17:28.415886+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.415891+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138723,\n"} +{"Time":"2020-04-21T17:17:28.415896+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.415901+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903460,\n"} +{"Time":"2020-04-21T17:17:28.415906+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.415911+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjJLzzeSKAfzKMm74Hay5G1YgF_ed47IPQjIxCZeI\",\n"} +{"Time":"2020-04-21T17:17:28.415916+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.415921+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.415926+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.415931+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.415935+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.41594+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903470:559\",\n"} +{"Time":"2020-04-21T17:17:28.415945+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjJHNgABXYk2jEntsVacES-2tN811CDey0My_HUI4.record\",\n"} +{"Time":"2020-04-21T17:17:28.41595+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.415957+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138723,\n"} +{"Time":"2020-04-21T17:17:28.415962+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.415966+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903460,\n"} +{"Time":"2020-04-21T17:17:28.415971+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.415976+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjJLHRRnx923t-2aLendWSgMcxMjT7RJxHBrQ7Jow\",\n"} +{"Time":"2020-04-21T17:17:28.415986+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.416+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.416006+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.416011+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.416016+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.41602+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903470:540\",\n"} +{"Time":"2020-04-21T17:17:28.416025+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjLhGuH6NvkVgmY9DaJ8e4eevus6mBZoSGbilxcSE.record\",\n"} +{"Time":"2020-04-21T17:17:28.41603+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"1000000\",\n"} +{"Time":"2020-04-21T17:17:28.416035+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.41604+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138733,\n"} +{"Time":"2020-04-21T17:17:28.416045+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.416056+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903470,\n"} +{"Time":"2020-04-21T17:17:28.416061+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.416066+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjJOOP4X-TFTtylJrvHVL2uoZcVCR4pM58IWXnA4o\",\n"} +{"Time":"2020-04-21T17:17:28.416072+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.416077+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AnAjLq1hwP2Lq4g0sF_4aUFuXQhU7Y2AzQaHE2Breto\",\n"} +{"Time":"2020-04-21T17:17:28.416086+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.416091+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.416095+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.4161+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903470:506\",\n"} +{"Time":"2020-04-21T17:17:28.416105+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjLiSYhclZIkt4yEN4m4HMFLH-3mwVVgrtuszixZI.record\",\n"} +{"Time":"2020-04-21T17:17:28.41611+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.416115+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138733,\n"} +{"Time":"2020-04-21T17:17:28.41612+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.416125+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903470,\n"} +{"Time":"2020-04-21T17:17:28.416129+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.416134+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjLufGQCx6gxYdVcdWEfvpPKgaWmWUFz4M_Lh4lbs\",\n"} +{"Time":"2020-04-21T17:17:28.416139+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.416144+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.416149+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.416156+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.416161+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.416165+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903470:364\",\n"} +{"Time":"2020-04-21T17:17:28.41617+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjLg9gmIVfN_0KPbo1k6P4sJ5FjoxawpeLKlSrFfY.record\",\n"} +{"Time":"2020-04-21T17:17:28.416175+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"1000000\",\n"} +{"Time":"2020-04-21T17:17:28.41618+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.416185+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138733,\n"} +{"Time":"2020-04-21T17:17:28.416189+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.416194+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903470,\n"} +{"Time":"2020-04-21T17:17:28.417147+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.417162+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjJE__x7y_5JeSjnYnNMHJb7_bAYdYxplJ3vg6bj4\",\n"} +{"Time":"2020-04-21T17:17:28.417169+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.417175+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AnAjLqHOHsD82eWIkNVhFSL1FcmtGLAmBPsnPhjh-ng\",\n"} +{"Time":"2020-04-21T17:17:28.41718+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.417185+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.41719+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.417195+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903470:347\",\n"} +{"Time":"2020-04-21T17:17:28.4172+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjJF0cMqfDpBfpcDpEQwDQRHIj-oJa-xpkciKJyQI.record\",\n"} +{"Time":"2020-04-21T17:17:28.417205+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.417221+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138723,\n"} +{"Time":"2020-04-21T17:17:28.417227+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.417234+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903460,\n"} +{"Time":"2020-04-21T17:17:28.417239+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.417244+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjJDDBqH8QFYLQS6JTdTDM8O4Pn8DF7_c2RxDym-A\",\n"} +{"Time":"2020-04-21T17:17:28.417249+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.417254+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.417259+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.417264+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.417269+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.417273+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903470:167\",\n"} +{"Time":"2020-04-21T17:17:28.417278+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjLtR_s4gpPImDYJAwL4lz913Q4xTpOHDue7_Tyg0.record\",\n"} +{"Time":"2020-04-21T17:17:28.417283+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.417288+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138733,\n"} +{"Time":"2020-04-21T17:17:28.417293+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.417298+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903470,\n"} +{"Time":"2020-04-21T17:17:28.417303+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.417313+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjLn4PxA7Es3U-XTEVxZa9N_gyFb4cWmTgUwiej5o\",\n"} +{"Time":"2020-04-21T17:17:28.417318+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.417323+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.417328+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.417333+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.417867+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.417882+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903460:262\",\n"} +{"Time":"2020-04-21T17:17:28.417889+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjJEchela7MILtGmosjQoaOQ088zwFlL3F23Y_WrM.record\",\n"} +{"Time":"2020-04-21T17:17:28.417898+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.417904+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138723,\n"} +{"Time":"2020-04-21T17:17:28.417909+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.417914+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903460,\n"} +{"Time":"2020-04-21T17:17:28.417918+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.417923+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjJKygFpntlWj4DeTp7Q8Pt-_jL5Hm3s_IOQZvMmA\",\n"} +{"Time":"2020-04-21T17:17:28.417928+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.417934+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.417939+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.417944+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.417958+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.417966+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40898900:63\",\n"} +{"Time":"2020-04-21T17:17:28.417971+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnARVO0k3DKVNBd4Dl8VcQss_pdlpMjM-qmddqHaaAE.record\",\n"} +{"Time":"2020-04-21T17:17:28.417976+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.417981+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587134163,\n"} +{"Time":"2020-04-21T17:17:28.417986+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.41799+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40898900,\n"} +{"Time":"2020-04-21T17:17:28.417995+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.418+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnARVCN0EcbPdVHX7Ihr_1eS4U0p3PKP08AvM3_p5bc\",\n"} +{"Time":"2020-04-21T17:17:28.418005+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.418011+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.418015+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.41802+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.418025+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.418029+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40817990:143\",\n"} +{"Time":"2020-04-21T17:17:28.418034+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am7VRq0BWrCZOeh5f9QoF86FlKjHrbvOU_N4xeezy_A.record\",\n"} +{"Time":"2020-04-21T17:17:28.418039+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.418044+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587053253,\n"} +{"Time":"2020-04-21T17:17:28.418053+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.418841+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40817990,\n"} +{"Time":"2020-04-21T17:17:28.418854+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.418859+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am7VRrekMJidtIo6JwxEZyZLjgRJKr14h9gO-9Ed56Y\",\n"} +{"Time":"2020-04-21T17:17:28.418864+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.418869+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.418873+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.418877+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.418881+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.418884+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40817730:39\",\n"} +{"Time":"2020-04-21T17:17:28.418889+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am7UOAW5wyc1JoCVtYgHbDVPj8sWDIanrOGWDkRXCng.record\",\n"} +{"Time":"2020-04-21T17:17:28.418893+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.418897+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587052983,\n"} +{"Time":"2020-04-21T17:17:28.418905+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.418912+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40817720,\n"} +{"Time":"2020-04-21T17:17:28.418916+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.418925+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am7UOPfcUgtooRyNmmj8cbf-czOuCuoPIMUX9hLvfaM\",\n"} +{"Time":"2020-04-21T17:17:28.418929+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.418937+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.418941+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.418945+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.418949+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.418953+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40817690:31\",\n"} +{"Time":"2020-04-21T17:17:28.418957+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am7UGgKlZaq4zoulEEBgvaLlDkH4dWBj3XS-HFrmz6c.record\",\n"} +{"Time":"2020-04-21T17:17:28.418961+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.418965+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587052953,\n"} +{"Time":"2020-04-21T17:17:28.418968+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.418972+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40817690,\n"} +{"Time":"2020-04-21T17:17:28.418976+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.41898+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am7UGgdKb2UE9Hv0vffQXRcCxLZZYf2N3Htll49QHwI\",\n"} +{"Time":"2020-04-21T17:17:28.418985+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.418989+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.418993+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.419499+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.419511+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.419516+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40817230:43\",\n"} +{"Time":"2020-04-21T17:17:28.41952+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am7STkzTfQiN9Cng8FAKwfOzfWftPctSwUBLLgL-zz8.record\",\n"} +{"Time":"2020-04-21T17:17:28.419525+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.419529+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587052493,\n"} +{"Time":"2020-04-21T17:17:28.419533+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.419537+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40817230,\n"} +{"Time":"2020-04-21T17:17:28.419541+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.419545+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am7STsUq-NwtGm7BDlCBFtd9Pm1F7fsWh1KVMAzPJj8\",\n"} +{"Time":"2020-04-21T17:17:28.41955+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.419558+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.419562+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.419566+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.41957+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.419574+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40816540:37\",\n"} +{"Time":"2020-04-21T17:17:28.419578+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am7PnLKlABiJZUQimiLGQw5CER-7Q2Xnk6RVE34v0qg.record\",\n"} +{"Time":"2020-04-21T17:17:28.419582+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"272\",\n"} +{"Time":"2020-04-21T17:17:28.419587+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.419591+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587051803,\n"} +{"Time":"2020-04-21T17:17:28.419595+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.419599+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40816540,\n"} +{"Time":"2020-04-21T17:17:28.419602+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.419606+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am7PdOfsSveYKWian27cGgNycyiRcc4i4Y4s6oO0rMw\",\n"} +{"Time":"2020-04-21T17:17:28.419611+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.419614+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.419618+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Am7PfnyHasNkkiA9rPs1qtUITMuimb2i_nPwl5FXERQ\"\n"} +{"Time":"2020-04-21T17:17:28.419622+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.419626+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.41963+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40816510:163\",\n"} +{"Time":"2020-04-21T17:17:28.419634+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am7PfkVAHx6A1K6yas1y8mDL-fWPSkI6N1cGbT4__yk.record\",\n"} +{"Time":"2020-04-21T17:17:28.419638+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"40000000\",\n"} +{"Time":"2020-04-21T17:17:28.420226+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.420238+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587051773,\n"} +{"Time":"2020-04-21T17:17:28.420243+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.420247+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40816510,\n"} +{"Time":"2020-04-21T17:17:28.420251+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.42026+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am7PdOfsSveYKWian27cGgNycyiRcc4i4Y4s6oO0rMw\",\n"} +{"Time":"2020-04-21T17:17:28.420265+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.42027+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1Am7PfnyHasNkkiA9rPs1qtUITMuimb2i_nPwl5FXERQ\",\n"} +{"Time":"2020-04-21T17:17:28.420274+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.420283+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.420288+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.420292+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40814590:33\",\n"} +{"Time":"2020-04-21T17:17:28.420296+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am7H_o-OEEPDgDvGInloXj5zvYlydRcwEpU3WjOnmFg.record\",\n"} +{"Time":"2020-04-21T17:17:28.4203+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"199700000000000\",\n"} +{"Time":"2020-04-21T17:17:28.420304+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.420308+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587049853,\n"} +{"Time":"2020-04-21T17:17:28.420312+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.420316+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40814590,\n"} +{"Time":"2020-04-21T17:17:28.42032+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.420324+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.420328+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.420332+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.420336+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AmLynmlxa8q7rhXIhn9fT8F9jWr4-FotsNeXIJ76Aro\"\n"} +{"Time":"2020-04-21T17:17:28.420341+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.420344+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.420348+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40813850:29\",\n"} +{"Time":"2020-04-21T17:17:28.420352+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am7FGnWvO9GeCju9M5lXXKlRMOtgFHTeolDbHjPdkWw.record\",\n"} +{"Time":"2020-04-21T17:17:28.420356+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"272\",\n"} +{"Time":"2020-04-21T17:17:28.420361+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.420365+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587049113,\n"} +{"Time":"2020-04-21T17:17:28.420369+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.420372+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40813850,\n"} +{"Time":"2020-04-21T17:17:28.420376+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.420601+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am7E8tyrQEO7aPi_BCT7IF1IlBwkBtHmThmYMwTF9ec\",\n"} +{"Time":"2020-04-21T17:17:28.420615+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.420621+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.420626+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Am7E_NcTvJ1p-CyB2o25ATxWBsq8E7zo1ogFWqbwmhg\"\n"} +{"Time":"2020-04-21T17:17:28.42064+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.420645+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.42065+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40813820:22\",\n"} +{"Time":"2020-04-21T17:17:28.420659+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am7E_LOtUah_ctet_aKwl_5UnQS2fIcGdvkcVYTIvFs.record\",\n"} +{"Time":"2020-04-21T17:17:28.420664+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"40000000\",\n"} +{"Time":"2020-04-21T17:17:28.420668+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.420673+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587049083,\n"} +{"Time":"2020-04-21T17:17:28.420678+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.420682+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40813820,\n"} +{"Time":"2020-04-21T17:17:28.420686+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.420691+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am7E8tyrQEO7aPi_BCT7IF1IlBwkBtHmThmYMwTF9ec\",\n"} +{"Time":"2020-04-21T17:17:28.420695+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.4207+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1Am7E_NcTvJ1p-CyB2o25ATxWBsq8E7zo1ogFWqbwmhg\",\n"} +{"Time":"2020-04-21T17:17:28.420706+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.42071+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.420718+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.420722+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40798820:243\",\n"} +{"Time":"2020-04-21T17:17:28.420726+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am6KZAaUq8ycIPsyYiIOf7KYbPRfPQQfbtxZD2Igcb4.record\",\n"} +{"Time":"2020-04-21T17:17:28.42073+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100\",\n"} +{"Time":"2020-04-21T17:17:28.420734+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.420738+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587034083,\n"} +{"Time":"2020-04-21T17:17:28.420742+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.420746+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40798820,\n"} +{"Time":"2020-04-21T17:17:28.42075+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.420754+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am6KZDvgIdXV_3r66yVR7dM9I-_hiVPS79vtyIW26Kw\",\n"} +{"Time":"2020-04-21T17:17:28.420762+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.420767+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1Am6KZNM3xrzxPijlpyXgPhFp9_sdLpV24yvpDncPbPY\",\n"} +{"Time":"2020-04-21T17:17:28.420771+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.420775+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.420778+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.420782+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40798630:95\",\n"} +{"Time":"2020-04-21T17:17:28.420786+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am6JphuJ9RpGPqrQJIaUrBvVgipUvrBWww6iFrdy-pk.record\",\n"} +{"Time":"2020-04-21T17:17:28.42079+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100\",\n"} +{"Time":"2020-04-21T17:17:28.420794+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.420798+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587033893,\n"} +{"Time":"2020-04-21T17:17:28.420802+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.420805+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40798630,\n"} +{"Time":"2020-04-21T17:17:28.420813+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.420817+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am6JpgX5CmQh0JmQAQWexuoW8DgJGakdoEs-YbCY7lg\",\n"} +{"Time":"2020-04-21T17:17:28.420821+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.420825+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1Am6JpqTl82SEsas-XGGGMMH5Axzv_p9xGaebv5nDaZc\",\n"} +{"Time":"2020-04-21T17:17:28.420829+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.420833+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.420837+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.420841+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40798570:12\",\n"} +{"Time":"2020-04-21T17:17:28.420845+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am6JYEeIolx4WvTd5iaOwpAH7FrqL2u60I4wMJrH5LQ.record\",\n"} +{"Time":"2020-04-21T17:17:28.420848+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100\",\n"} +{"Time":"2020-04-21T17:17:28.420853+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.420856+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587033833,\n"} +{"Time":"2020-04-21T17:17:28.42086+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.420864+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40798570,\n"} +{"Time":"2020-04-21T17:17:28.420869+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.420873+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am6JYEG9f6TW7n6NLIoyHkVvgIjkAx3aPPBCdSnoqUA\",\n"} +{"Time":"2020-04-21T17:17:28.420877+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.420881+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1Am6JYEDirviIzMATpfG8dKdC7D6FaHet89PlmCkijkw\",\n"} +{"Time":"2020-04-21T17:17:28.420885+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.420889+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.420892+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.420896+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40735740:41\",\n"} +{"Time":"2020-04-21T17:17:28.421453+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am2T_GyeMNq-TjjsThmr3b9cmt7aYlYA6niLRhBbS9k.record\",\n"} +{"Time":"2020-04-21T17:17:28.421467+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000\",\n"} +{"Time":"2020-04-21T17:17:28.421472+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.421476+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586971003,\n"} +{"Time":"2020-04-21T17:17:28.42148+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.421484+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40735740,\n"} +{"Time":"2020-04-21T17:17:28.421488+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.421492+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.421496+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.4215+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.421504+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AmLynmlxa8q7rhXIhn9fT8F9jWr4-FotsNeXIJ76Aro\"\n"} +{"Time":"2020-04-21T17:17:28.421508+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.421511+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.421515+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40734910:38\",\n"} +{"Time":"2020-04-21T17:17:28.421519+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am2QvjDApAgIlTxY0v6bRk9K60hSProBuH8Nmo0dKH8.record\",\n"} +{"Time":"2020-04-21T17:17:28.421523+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000\",\n"} +{"Time":"2020-04-21T17:17:28.421527+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.421531+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586970173,\n"} +{"Time":"2020-04-21T17:17:28.421535+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.421538+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40734910,\n"} +{"Time":"2020-04-21T17:17:28.421542+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.421546+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.42155+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.421554+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.421558+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AmLynmlxa8q7rhXIhn9fT8F9jWr4-FotsNeXIJ76Aro\"\n"} +{"Time":"2020-04-21T17:17:28.421562+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.421565+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.421571+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40725670:36\",\n"} +{"Time":"2020-04-21T17:17:28.421575+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am1spgL3y5jgYq0o-ZHVLEZfSWQCBMN4ecTNHn8skUA.record\",\n"} +{"Time":"2020-04-21T17:17:28.421579+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.421582+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586960933,\n"} +{"Time":"2020-04-21T17:17:28.421586+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.42159+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40725670,\n"} +{"Time":"2020-04-21T17:17:28.421868+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.421874+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am1spuW9gCcdyvMIfawzu5jsM1pBU5KEpbtdU7pfafg\",\n"} +{"Time":"2020-04-21T17:17:28.421879+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.421883+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.421887+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.421898+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.421902+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.421906+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40718080:46\",\n"} +{"Time":"2020-04-21T17:17:28.42191+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am1PANlRaFJ9pqDzn2_GD8Ytsa5wdQlQw3wiLV1hisU.record\",\n"} +{"Time":"2020-04-21T17:17:28.421914+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.421921+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586953343,\n"} +{"Time":"2020-04-21T17:17:28.421926+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.42193+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40718080,\n"} +{"Time":"2020-04-21T17:17:28.421961+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.421969+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am1PADquJW9kdZIET5PpnfCB7-NiHFvaAxuX-5q7A-c\",\n"} +{"Time":"2020-04-21T17:17:28.421974+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.421978+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.421982+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.421985+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.421989+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.421993+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40718080:39\",\n"} +{"Time":"2020-04-21T17:17:28.421997+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am1PAN_BAe4CFK9NogAQimWKQiKCr4vwUo_Z9R61YfQ.record\",\n"} +{"Time":"2020-04-21T17:17:28.422001+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.422009+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586953343,\n"} +{"Time":"2020-04-21T17:17:28.422013+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.422017+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40718080,\n"} +{"Time":"2020-04-21T17:17:28.42202+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.422024+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am1PAKX4ncJHjqcUYl6pcZ1yT3zz8SppSUCLyWUFpEg\",\n"} +{"Time":"2020-04-21T17:17:28.422028+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.422037+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.422041+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.422405+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.422412+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.422416+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40717950:42\",\n"} +{"Time":"2020-04-21T17:17:28.422419+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am1Ofi86K07V_xYP8IcF2tBSFwyLL8XIQhS4VSaUbkU.record\",\n"} +{"Time":"2020-04-21T17:17:28.422422+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10\",\n"} +{"Time":"2020-04-21T17:17:28.422426+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586953213,\n"} +{"Time":"2020-04-21T17:17:28.422429+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.422432+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40717950,\n"} +{"Time":"2020-04-21T17:17:28.422435+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.422438+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am1OdFSNS8uunnrV5LWAf92l11AMaC9rplNXBUxF9OQ\",\n"} +{"Time":"2020-04-21T17:17:28.422442+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Am1OdP9OO0Z2jpNsPzkkdgEZHB41JXBeGUTTyTgc7Vk\",\n"} +{"Time":"2020-04-21T17:17:28.422445+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.422448+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.422451+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.422455+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.422458+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40717940:182\",\n"} +{"Time":"2020-04-21T17:17:28.422463+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am1OdEmJHxwGcMtjCnyGpxHQ38WDcufU56yAnRHkNQM.record\",\n"} +{"Time":"2020-04-21T17:17:28.422466+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.42247+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586953203,\n"} +{"Time":"2020-04-21T17:17:28.422473+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.422476+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40717940,\n"} +{"Time":"2020-04-21T17:17:28.422479+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.422482+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am1OdP9OO0Z2jpNsPzkkdgEZHB41JXBeGUTTyTgc7Vk\",\n"} +{"Time":"2020-04-21T17:17:28.422486+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.422489+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.422492+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.422495+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.422498+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.422501+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40717940:42\",\n"} +{"Time":"2020-04-21T17:17:28.422508+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am1OdFfKofv5Db4I9HKFm9uDF0zfzjOOS0DolJT__UI.record\",\n"} +{"Time":"2020-04-21T17:17:28.422511+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.422515+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586953203,\n"} +{"Time":"2020-04-21T17:17:28.422518+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.422814+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40717940,\n"} +{"Time":"2020-04-21T17:17:28.422822+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.422825+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am1OdFSNS8uunnrV5LWAf92l11AMaC9rplNXBUxF9OQ\",\n"} +{"Time":"2020-04-21T17:17:28.422829+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.422832+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.422835+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.422839+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.422842+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.422845+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40291260:34\",\n"} +{"Time":"2020-04-21T17:17:28.422852+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmbLvNM-bLnYPJJnWCPMnSa23q5QflLX4Svl1hY4GSI.record\",\n"} +{"Time":"2020-04-21T17:17:28.422856+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000\",\n"} +{"Time":"2020-04-21T17:17:28.422859+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.422862+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586526523,\n"} +{"Time":"2020-04-21T17:17:28.422866+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.42287+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40291260,\n"} +{"Time":"2020-04-21T17:17:28.422873+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.422876+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.42288+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.422883+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.422886+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AmVTpK6be6I6Dy6nUNLX9sMRuR6skKcuGo9UQJbev6U\"\n"} +{"Time":"2020-04-21T17:17:28.42289+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.422893+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.422896+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40282230:33\",\n"} +{"Time":"2020-04-21T17:17:28.422899+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Amaodk6ar2SUArSdHoxYNBjIvg3kDfLA_z7nsWPCD1I.record\",\n"} +{"Time":"2020-04-21T17:17:28.422903+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000\",\n"} +{"Time":"2020-04-21T17:17:28.422906+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.422909+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586517493,\n"} +{"Time":"2020-04-21T17:17:28.422912+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.422915+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40282230,\n"} +{"Time":"2020-04-21T17:17:28.422923+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.422927+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.42293+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.422934+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.422937+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AmLynmlxa8q7rhXIhn9fT8F9jWr4-FotsNeXIJ76Aro\"\n"} +{"Time":"2020-04-21T17:17:28.422941+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.422944+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.422947+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40209410:41\",\n"} +{"Time":"2020-04-21T17:17:28.422951+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmWMAs-rb9k6s-fPxGP04KHfWn3s_r4Ynr7PyU82PZY.record\",\n"} +{"Time":"2020-04-21T17:17:28.422955+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"5\",\n"} +{"Time":"2020-04-21T17:17:28.422958+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.422962+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586444673,\n"} +{"Time":"2020-04-21T17:17:28.422965+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.422968+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40209410,\n"} +{"Time":"2020-04-21T17:17:28.422972+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.422975+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.422978+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.422982+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.422985+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AmVkhL9FLcyvCKnlnJtaY__NLu90STn_m_4USuyH9RQ\"\n"} +{"Time":"2020-04-21T17:17:28.422991+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.422995+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.422998+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40209410:2\",\n"} +{"Time":"2020-04-21T17:17:28.423001+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmWMAvqllix2yHmnPX_lQQByX_5FGGGsEqUl9JoO-Ec.record\",\n"} +{"Time":"2020-04-21T17:17:28.423005+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"5\",\n"} +{"Time":"2020-04-21T17:17:28.423008+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.423011+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586444673,\n"} +{"Time":"2020-04-21T17:17:28.423017+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.423021+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40209410,\n"} +{"Time":"2020-04-21T17:17:28.423024+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.423027+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.42303+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.423034+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.423037+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AmVkhL9FLcyvCKnlnJtaY__NLu90STn_m_4USuyH9RQ\"\n"} +{"Time":"2020-04-21T17:17:28.42304+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.423043+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.42334+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40207060:155\",\n"} +{"Time":"2020-04-21T17:17:28.423344+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmWC1ClX9gi5SW_1EEo8cvvqcNw97B9_6km2422HNFk.record\",\n"} +{"Time":"2020-04-21T17:17:28.423347+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000010\",\n"} +{"Time":"2020-04-21T17:17:28.42335+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.423357+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586442323,\n"} +{"Time":"2020-04-21T17:17:28.42336+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.423363+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40207060,\n"} +{"Time":"2020-04-21T17:17:28.423366+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.42337+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.423374+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.423378+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AmWC1JOtZF7S2JjmOGGZvVGTav31589rTwsEzMxqfXU\",\n"} +{"Time":"2020-04-21T17:17:28.423385+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.423388+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.423391+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.423394+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40207030:16\",\n"} +{"Time":"2020-04-21T17:17:28.423397+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmWCrEiqdR5eHfnqHoYVAYTY4RYRpicrWB6kegSCeXA.record\",\n"} +{"Time":"2020-04-21T17:17:28.423401+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100\",\n"} +{"Time":"2020-04-21T17:17:28.423404+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.423407+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586442293,\n"} +{"Time":"2020-04-21T17:17:28.42341+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.423414+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40207030,\n"} +{"Time":"2020-04-21T17:17:28.423442+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.423445+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.423452+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.423456+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AmWCrJsB1QN2TKr5Z9RIfpBRZ7OSAN5x2LPbE0-xJSc\",\n"} +{"Time":"2020-04-21T17:17:28.423459+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.423462+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.423465+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.423469+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40207010:288\",\n"} +{"Time":"2020-04-21T17:17:28.423472+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmWCorFNa6ZxNoD5zUmXKiDjvwR-AlX2f8tfjGNp9DE.record\",\n"} +{"Time":"2020-04-21T17:17:28.423475+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"1000\",\n"} +{"Time":"2020-04-21T17:17:28.423478+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.423573+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586442273,\n"} +{"Time":"2020-04-21T17:17:28.423577+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.42358+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40207010,\n"} +{"Time":"2020-04-21T17:17:28.423583+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.423587+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.42359+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.423595+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AmWCoh3AUDyW_9RNw_H86l3bcJiUuKWqnsKnkcctDM4\",\n"} +{"Time":"2020-04-21T17:17:28.423598+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.423601+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.423604+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.423607+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40206030:143\",\n"} +{"Time":"2020-04-21T17:17:28.423611+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmV-zsg6GmocsUcBkzCgNfmPxKuWNJXWLE-9Ul4xPPY.record\",\n"} +{"Time":"2020-04-21T17:17:28.423614+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000\",\n"} +{"Time":"2020-04-21T17:17:28.423617+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.42362+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586441293,\n"} +{"Time":"2020-04-21T17:17:28.423624+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.423627+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40206030,\n"} +{"Time":"2020-04-21T17:17:28.42363+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.423633+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.423637+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.42364+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AmV-zjnrgleEa1iQc6GOXU3wE-d_QezUtBPF5KYq1NU\",\n"} +{"Time":"2020-04-21T17:17:28.423644+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.42365+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.423653+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.423657+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40199300:64\",\n"} +{"Time":"2020-04-21T17:17:28.42366+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmVkhEog-_BYRgZLJsz9gPQqGXdGW02ldSRpPU2IfJs.record\",\n"} +{"Time":"2020-04-21T17:17:28.423663+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10\",\n"} +{"Time":"2020-04-21T17:17:28.423666+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.42367+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586434563,\n"} +{"Time":"2020-04-21T17:17:28.423673+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.423676+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40199300,\n"} +{"Time":"2020-04-21T17:17:28.423679+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.423683+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.423686+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.423689+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AmVkhL9FLcyvCKnlnJtaY__NLu90STn_m_4USuyH9RQ\",\n"} +{"Time":"2020-04-21T17:17:28.423693+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.423696+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.423699+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.423702+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40197660:62\",\n"} +{"Time":"2020-04-21T17:17:28.423705+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmVeHD1rg_P3mjyH1B2VkfD7L7V572jADrOhSh6nBsc.record\",\n"} +{"Time":"2020-04-21T17:17:28.423709+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"3548781722441\",\n"} +{"Time":"2020-04-21T17:17:28.423712+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.423715+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586432923,\n"} +{"Time":"2020-04-21T17:17:28.423718+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.423722+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40197660,\n"} +{"Time":"2020-04-21T17:17:28.423725+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.423728+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.423731+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.423735+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.423738+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.423741+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.423744+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.423747+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40197660:22\",\n"} +{"Time":"2020-04-21T17:17:28.42375+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmVeHMXU0KsAPfd_F2FnmJylVYZTZlzjaxGSnAXEYtY.record\",\n"} +{"Time":"2020-04-21T17:17:28.423756+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"3548781722441\",\n"} +{"Time":"2020-04-21T17:17:28.42376+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586432923,\n"} +{"Time":"2020-04-21T17:17:28.423763+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.423766+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40197660,\n"} +{"Time":"2020-04-21T17:17:28.42377+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.423773+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.423776+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.42378+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.423783+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.423786+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.424083+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.424087+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40197160:79\",\n"} +{"Time":"2020-04-21T17:17:28.424093+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmVcKAn1LFQSOpd1ng4BNkav9A52fr62xrP9glzDS08.record\",\n"} +{"Time":"2020-04-21T17:17:28.424097+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"1\",\n"} +{"Time":"2020-04-21T17:17:28.4241+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.424103+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586432423,\n"} +{"Time":"2020-04-21T17:17:28.424106+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.42411+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40197160,\n"} +{"Time":"2020-04-21T17:17:28.424113+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.424116+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.424119+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.424126+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.424129+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.424133+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.424136+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.424139+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40196580:15\",\n"} +{"Time":"2020-04-21T17:17:28.424145+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmVZ5KhbkI0AmK7dsx_Uej0ShWctfHrrDFcoAyzCO5k.record\",\n"} +{"Time":"2020-04-21T17:17:28.424149+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"110000000000\",\n"} +{"Time":"2020-04-21T17:17:28.424152+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.424155+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586431843,\n"} +{"Time":"2020-04-21T17:17:28.424158+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.424162+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40196580,\n"} +{"Time":"2020-04-21T17:17:28.424165+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.424168+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.424171+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.424175+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.424178+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.424181+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.424185+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.424188+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40196160:6\",\n"} +{"Time":"2020-04-21T17:17:28.424191+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmVYQFq3vyBWYi198DMZzUaKeenF16oPLAIZE3qPJGI.record\",\n"} +{"Time":"2020-04-21T17:17:28.424195+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"1900000000000\",\n"} +{"Time":"2020-04-21T17:17:28.424198+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.424201+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586431423,\n"} +{"Time":"2020-04-21T17:17:28.424204+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.424207+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40196160,\n"} +{"Time":"2020-04-21T17:17:28.424211+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.424214+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.424217+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.424224+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.424227+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AlwJUAnGPg9TosLWtjgwmUEqWRMpfya_6ouNbhd1XfA\"\n"} +{"Time":"2020-04-21T17:17:28.424231+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.424234+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.424237+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40194990:101\",\n"} +{"Time":"2020-04-21T17:17:28.42424+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmVTrpCPEqyAANgWrwI8r83RxIgh02nUoIxJ8laGYoA.record\",\n"} +{"Time":"2020-04-21T17:17:28.424245+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000\",\n"} +{"Time":"2020-04-21T17:17:28.424248+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.424251+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586430253,\n"} +{"Time":"2020-04-21T17:17:28.424254+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.424258+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40194990,\n"} +{"Time":"2020-04-21T17:17:28.424261+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.424264+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.424267+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.424271+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AmVTpK6be6I6Dy6nUNLX9sMRuR6skKcuGo9UQJbev6U\",\n"} +{"Time":"2020-04-21T17:17:28.424274+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.424282+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.42429+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.424293+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40127090:145\",\n"} +{"Time":"2020-04-21T17:17:28.424296+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmRKcj5blWM-IScTuebtW6M1b8VsMQbwNYdwH9ym1lU.record\",\n"} +{"Time":"2020-04-21T17:17:28.4243+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"34500000000\",\n"} +{"Time":"2020-04-21T17:17:28.424303+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.424306+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586362353,\n"} +{"Time":"2020-04-21T17:17:28.424309+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.424312+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40127090,\n"} +{"Time":"2020-04-21T17:17:28.424315+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.424618+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Aji9hXgl8hkbfLlEKD5hZ0o2Z-UHzNSKkJd4kHIKYD0\",\n"} +{"Time":"2020-04-21T17:17:28.424622+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.424625+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AmRKaL3SdY0WngBxfKXsqUMDajvjbRtUC_93h3DnuZM\",\n"} +{"Time":"2020-04-21T17:17:28.424629+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.424632+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.424635+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.424638+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40126740:152\",\n"} +{"Time":"2020-04-21T17:17:28.424641+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmRJFGlxWiWy2OyAgssDr4tQFY-ytJ6VbXea_WHwfZE.record\",\n"} +{"Time":"2020-04-21T17:17:28.424645+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"23400000000\",\n"} +{"Time":"2020-04-21T17:17:28.424651+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.424655+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586362003,\n"} +{"Time":"2020-04-21T17:17:28.424658+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.424661+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40126740,\n"} +{"Time":"2020-04-21T17:17:28.424664+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.424667+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Aji9hXgl8hkbfLlEKD5hZ0o2Z-UHzNSKkJd4kHIKYD0\",\n"} +{"Time":"2020-04-21T17:17:28.424671+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.424674+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AmRJFA7psXETlZPlZ5oiy0iIU9Mz11LU6w4f9Ske8nk\",\n"} +{"Time":"2020-04-21T17:17:28.424677+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.424681+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.424684+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.424687+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40039070:156\",\n"} +{"Time":"2020-04-21T17:17:28.42469+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmLyng_UTy0H3f6vQAauf6FLNqnguIcrdUKxf0XTnjc.record\",\n"} +{"Time":"2020-04-21T17:17:28.424693+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"200000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.424697+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.4247+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586274333,\n"} +{"Time":"2020-04-21T17:17:28.424703+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.424706+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40039070,\n"} +{"Time":"2020-04-21T17:17:28.424712+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.424716+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.424719+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.424723+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AmLynmlxa8q7rhXIhn9fT8F9jWr4-FotsNeXIJ76Aro\",\n"} +{"Time":"2020-04-21T17:17:28.424726+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.424729+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.424732+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.424735+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40024100:6\",\n"} +{"Time":"2020-04-21T17:17:28.424739+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmK4JK7lzsmW_uW55JwqjqgBKIpLsohVY4QsGRjo9KY.record\",\n"} +{"Time":"2020-04-21T17:17:28.424742+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.424745+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.424748+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586259363,\n"} +{"Time":"2020-04-21T17:17:28.424751+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.424757+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40024100,\n"} +{"Time":"2020-04-21T17:17:28.42476+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.424763+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.424767+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AmGBID-H_5mtbLwG8_F1aFj6xwshlTf4BpDJ2yfHIvw\",\n"} +{"Time":"2020-04-21T17:17:28.424773+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.424776+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.424779+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.424782+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.424785+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40022780:44\",\n"} +{"Time":"2020-04-21T17:17:28.424789+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmKy_C8SJxFKNd_s6pU4bcedevldSJeuRD3XfLP6G3Q.record\",\n"} +{"Time":"2020-04-21T17:17:28.424792+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"2000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.424795+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.424798+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586258043,\n"} +{"Time":"2020-04-21T17:17:28.424802+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.424805+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40022780,\n"} +{"Time":"2020-04-21T17:17:28.424808+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.424811+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AmGBID-H_5mtbLwG8_F1aFj6xwshlTf4BpDJ2yfHIvw\",\n"} +{"Time":"2020-04-21T17:17:28.424814+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.424818+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.424821+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.424831+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.424834+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.424837+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40021840:15\",\n"} +{"Time":"2020-04-21T17:17:28.425142+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmKvULlN72P456u9O2LoFMAmuT30h_BVI9Xxtprovlc.record\",\n"} +{"Time":"2020-04-21T17:17:28.425146+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000\",\n"} +{"Time":"2020-04-21T17:17:28.425153+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.425156+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586257103,\n"} +{"Time":"2020-04-21T17:17:28.425159+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.425163+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40021840,\n"} +{"Time":"2020-04-21T17:17:28.425166+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.425169+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.425172+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.425176+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.425179+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AlwJUAnGPg9TosLWtjgwmUEqWRMpfya_6ouNbhd1XfA\"\n"} +{"Time":"2020-04-21T17:17:28.425182+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.425185+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.425188+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40016030:42\",\n"} +{"Time":"2020-04-21T17:17:28.425192+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmKYnlb4zqdBMPFj4Uh8cjtCp2e3MzjWFLNUpLIUofY.record\",\n"} +{"Time":"2020-04-21T17:17:28.425196+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"1999860152100\",\n"} +{"Time":"2020-04-21T17:17:28.425199+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.425202+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586251293,\n"} +{"Time":"2020-04-21T17:17:28.425205+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.425209+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40016030,\n"} +{"Time":"2020-04-21T17:17:28.425212+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.425215+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.425218+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.425222+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.425225+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Al2X8nZJs8QuWpzmss4dyL6NJsE62VW84SmxZq6ifIA\"\n"} +{"Time":"2020-04-21T17:17:28.425228+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.425231+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.425234+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40012520:16\",\n"} +{"Time":"2020-04-21T17:17:28.425238+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmKK6ILtm5eJ1Wpax2iTOCvF-TxKEpaQr0TRK0nnwZU.record\",\n"} +{"Time":"2020-04-21T17:17:28.425241+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000\",\n"} +{"Time":"2020-04-21T17:17:28.425244+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.425248+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586247783,\n"} +{"Time":"2020-04-21T17:17:28.425251+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.425254+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40012520,\n"} +{"Time":"2020-04-21T17:17:28.425257+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.42526+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.425264+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.425267+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.425271+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.425274+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.425277+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.42528+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39956100:4\",\n"} +{"Time":"2020-04-21T17:17:28.425283+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmGuhApLJ8DjJnqCF3cZe_iG9cq9Iw8J_Stsw93zt8k.record\",\n"} +{"Time":"2020-04-21T17:17:28.425286+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.42529+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.425293+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586191363,\n"} +{"Time":"2020-04-21T17:17:28.425296+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.425299+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39956100,\n"} +{"Time":"2020-04-21T17:17:28.425302+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.425306+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.425309+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.425312+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.425315+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.425322+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.425325+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.425331+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39955830:20\",\n"} +{"Time":"2020-04-21T17:17:28.425336+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmGtdq4Fgidc-c1vv-oLURiH2bJTVQRYlp16ObsaBnU.record\",\n"} +{"Time":"2020-04-21T17:17:28.42534+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.425343+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.425346+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586191093,\n"} +{"Time":"2020-04-21T17:17:28.425349+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.425352+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39955830,\n"} +{"Time":"2020-04-21T17:17:28.425355+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.425359+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.425362+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.425686+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.425692+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Alrxp0BAKzhrGg2_1pqXNMABGvcg-DUjpslMMZ-zz74\"\n"} +{"Time":"2020-04-21T17:17:28.425696+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.4257+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.425703+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39949820:27\",\n"} +{"Time":"2020-04-21T17:17:28.425706+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmGV_E6cNutsV1APttAgmwgUQXZAXxTu2K0R2hZYgCU.record\",\n"} +{"Time":"2020-04-21T17:17:28.425709+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"400000000000\",\n"} +{"Time":"2020-04-21T17:17:28.425713+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.425716+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586185083,\n"} +{"Time":"2020-04-21T17:17:28.425719+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.425725+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39949820,\n"} +{"Time":"2020-04-21T17:17:28.425728+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.425732+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.425735+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.425739+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.425742+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.425749+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.425752+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.425755+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39949220:61\",\n"} +{"Time":"2020-04-21T17:17:28.425759+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmGTpOXOzA6zoyG9tUMn5YnJqrEDvA3CqZo3ukcU2zM.record\",\n"} +{"Time":"2020-04-21T17:17:28.425762+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.425765+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.425768+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586184483,\n"} +{"Time":"2020-04-21T17:17:28.425772+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.425775+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39949220,\n"} +{"Time":"2020-04-21T17:17:28.425778+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.425781+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.425786+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.42579+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.425793+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.425796+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.425799+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.425802+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39949190:42\",\n"} +{"Time":"2020-04-21T17:17:28.425806+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmGThoyVf68tH22pdmU1Pf_-9V_xVfW8oy3y3UHZjpo.record\",\n"} +{"Time":"2020-04-21T17:17:28.425812+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.425815+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.425819+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586184453,\n"} +{"Time":"2020-04-21T17:17:28.425822+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.425825+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39949190,\n"} +{"Time":"2020-04-21T17:17:28.425828+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.425834+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.425838+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.425841+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.425845+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Alrxp0BAKzhrGg2_1pqXNMABGvcg-DUjpslMMZ-zz74\"\n"} +{"Time":"2020-04-21T17:17:28.425848+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.425851+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.425854+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39944690:25\",\n"} +{"Time":"2020-04-21T17:17:28.425857+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmGB8oaa-KFHXi90vYCbUv6BZaL1iOyBmPPqM7bXJKA.record\",\n"} +{"Time":"2020-04-21T17:17:28.425864+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"199993865666493\",\n"} +{"Time":"2020-04-21T17:17:28.425868+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.425871+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586179953,\n"} +{"Time":"2020-04-21T17:17:28.425874+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.425877+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39944690,\n"} +{"Time":"2020-04-21T17:17:28.425881+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.425884+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.425889+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.425893+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.425896+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Al2YpvWnH1MTAK-f79TeIBp6ZBPmYutnsB4GINHhgF8\"\n"} +{"Time":"2020-04-21T17:17:28.4259+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.425903+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.425908+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39941540:32\",\n"} +{"Time":"2020-04-21T17:17:28.425912+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmF1pFnw3cWe6tzANL9UhWdjL3c0Zi-KS0p0Q63MDGY.record\",\n"} +{"Time":"2020-04-21T17:17:28.425915+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.425918+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.426244+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586176803,\n"} +{"Time":"2020-04-21T17:17:28.426249+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.426252+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39941540,\n"} +{"Time":"2020-04-21T17:17:28.426255+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.426258+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AmE3VuQ0rUaWSQi-4t1g2vCwG-po8ddqMx_j5D4uT8U\",\n"} +{"Time":"2020-04-21T17:17:28.426262+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.426265+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.426269+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.426272+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.426275+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.426278+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39941230:29\",\n"} +{"Time":"2020-04-21T17:17:28.426281+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmF0bhjOYfZfxJkDpR36uwt37lj3WerEL95XiXxENxM.record\",\n"} +{"Time":"2020-04-21T17:17:28.426284+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.426288+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.426291+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586176493,\n"} +{"Time":"2020-04-21T17:17:28.426294+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.426297+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39941230,\n"} +{"Time":"2020-04-21T17:17:28.426301+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.426304+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.426307+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.426311+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.426314+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Alrxp0BAKzhrGg2_1pqXNMABGvcg-DUjpslMMZ-zz74\"\n"} +{"Time":"2020-04-21T17:17:28.426317+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.42632+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.426323+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39690298:48\",\n"} +{"Time":"2020-04-21T17:17:28.426327+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Al2gOkef3typVu-gTfTkkT0eS6SvSYw3XHamDdqezes.record\",\n"} +{"Time":"2020-04-21T17:17:28.42633+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.426333+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.426336+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585925561,\n"} +{"Time":"2020-04-21T17:17:28.42634+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.426346+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39690298,\n"} +{"Time":"2020-04-21T17:17:28.42635+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.426353+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.426356+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.42636+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.426363+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.426366+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.426369+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.426372+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39688638:21\",\n"} +{"Time":"2020-04-21T17:17:28.426382+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Al2ZvvdAjisBxhO7E0FX6oDmtyw4zuzvcLwAG4TKpWs.record\",\n"} +{"Time":"2020-04-21T17:17:28.426386+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.42639+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.426393+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585923901,\n"} +{"Time":"2020-04-21T17:17:28.426396+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.426399+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39688638,\n"} +{"Time":"2020-04-21T17:17:28.426402+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.426405+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.426409+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.426412+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.426415+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.426418+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.426424+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.426428+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39688578:34\",\n"} +{"Time":"2020-04-21T17:17:28.426431+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Al2Zgr_8JyJldnVAI5_tF8Kvhtl5QICBMhtuBlqAJzc.record\",\n"} +{"Time":"2020-04-21T17:17:28.426437+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.426441+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.426444+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585923841,\n"} +{"Time":"2020-04-21T17:17:28.426448+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.426451+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39688578,\n"} +{"Time":"2020-04-21T17:17:28.426455+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.426458+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.426461+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.426464+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.426468+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.426471+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.426765+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.426769+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39688508:16\",\n"} +{"Time":"2020-04-21T17:17:28.426772+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Al2ZPOceXEHd8wVA6sNcLxovpsNeY1pbSPRvNsX7l1w.record\",\n"} +{"Time":"2020-04-21T17:17:28.426775+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"6134333507\",\n"} +{"Time":"2020-04-21T17:17:28.426779+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.426782+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585923771,\n"} +{"Time":"2020-04-21T17:17:28.426785+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.426788+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39688508,\n"} +{"Time":"2020-04-21T17:17:28.426791+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.426795+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.426798+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.426801+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.426804+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Al2YpvWnH1MTAK-f79TeIBp6ZBPmYutnsB4GINHhgF8\"\n"} +{"Time":"2020-04-21T17:17:28.426808+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.426811+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.426814+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39688488:24\",\n"} +{"Time":"2020-04-21T17:17:28.426817+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Al2ZKPU8eaNmCZDVVCX7UDLRfNNx7OnOrYs9DbXomA4.record\",\n"} +{"Time":"2020-04-21T17:17:28.426821+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"112266722\",\n"} +{"Time":"2020-04-21T17:17:28.426827+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.426833+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585923751,\n"} +{"Time":"2020-04-21T17:17:28.426836+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.426839+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39688488,\n"} +{"Time":"2020-04-21T17:17:28.426842+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.426846+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.426853+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.426857+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.42686+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Al2X8nZJs8QuWpzmss4dyL6NJsE62VW84SmxZq6ifIA\"\n"} +{"Time":"2020-04-21T17:17:28.426866+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.426869+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.426872+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39688358:160\",\n"} +{"Time":"2020-04-21T17:17:28.426876+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Al2Yplz6rOsMFVbfMNmiL8lNQD1byo5v0CFUCq6N-00.record\",\n"} +{"Time":"2020-04-21T17:17:28.426879+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"200000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.426883+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.426886+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585923621,\n"} +{"Time":"2020-04-21T17:17:28.426889+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.426892+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39688358,\n"} +{"Time":"2020-04-21T17:17:28.426895+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.426899+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.426902+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.426905+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1Al2YpvWnH1MTAK-f79TeIBp6ZBPmYutnsB4GINHhgF8\",\n"} +{"Time":"2020-04-21T17:17:28.426909+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.426912+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.426915+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.426918+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39688278:7\",\n"} +{"Time":"2020-04-21T17:17:28.426921+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Al2YVhvB0Q78mSaFYuy3Vpl6sAgLBJVt_dIUHf7WBWs.record\",\n"} +{"Time":"2020-04-21T17:17:28.426925+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"27581178\",\n"} +{"Time":"2020-04-21T17:17:28.426928+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.426934+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585923541,\n"} +{"Time":"2020-04-21T17:17:28.426937+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.42694+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39688278,\n"} +{"Time":"2020-04-21T17:17:28.426943+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.426947+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.42695+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.426953+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.426956+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Al2X8nZJs8QuWpzmss4dyL6NJsE62VW84SmxZq6ifIA\"\n"} +{"Time":"2020-04-21T17:17:28.42696+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.426963+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.42697+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39688178:135\",\n"} +{"Time":"2020-04-21T17:17:28.426976+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Al2X8jk1oArjVgE5maTNqynC9-Lgj-pICdP6F8MbtX8.record\",\n"} +{"Time":"2020-04-21T17:17:28.426979+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"2000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.426983+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.426986+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585923441,\n"} +{"Time":"2020-04-21T17:17:28.426989+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.426992+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39688178,\n"} +{"Time":"2020-04-21T17:17:28.427304+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.427308+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.427311+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.427315+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1Al2X8nZJs8QuWpzmss4dyL6NJsE62VW84SmxZq6ifIA\",\n"} +{"Time":"2020-04-21T17:17:28.427319+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.427323+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.427326+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.427329+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39610768:24\",\n"} +{"Time":"2020-04-21T17:17:28.427332+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlxpkHHu3-fnU83FhLeUYESr6rQZGTTEGwc-fUQF7i8.record\",\n"} +{"Time":"2020-04-21T17:17:28.427336+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.427339+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.427342+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585846031,\n"} +{"Time":"2020-04-21T17:17:28.427351+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.427354+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39610768,\n"} +{"Time":"2020-04-21T17:17:28.427358+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.427361+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.427364+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.427368+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.427371+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.427374+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.427377+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.42738+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39586158:2\",\n"} +{"Time":"2020-04-21T17:17:28.427383+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlwJbgHT6BN56RZMERB-F6gp6SaT-sUZ54PNp2KP01k.record\",\n"} +{"Time":"2020-04-21T17:17:28.427387+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"771722083325\",\n"} +{"Time":"2020-04-21T17:17:28.42739+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.427393+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585821421,\n"} +{"Time":"2020-04-21T17:17:28.427398+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.427401+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39586158,\n"} +{"Time":"2020-04-21T17:17:28.427404+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.427408+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.427411+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.427414+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.427418+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AlrjybdhmP59Fb1Pm-HSrQw6ROKsCa_ZAJ0dF0zReSU\"\n"} +{"Time":"2020-04-21T17:17:28.427421+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.427424+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.427427+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39586128:164\",\n"} +{"Time":"2020-04-21T17:17:28.42743+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlwJUHkOmIuOKjh-9GVsMx1i9WCqcpZoC2ekPcKF3fQ.record\",\n"} +{"Time":"2020-04-21T17:17:28.427434+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"2000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.427437+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.42744+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585821391,\n"} +{"Time":"2020-04-21T17:17:28.427443+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.427446+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39586128,\n"} +{"Time":"2020-04-21T17:17:28.427449+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.427453+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.427456+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.427459+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AlwJUAnGPg9TosLWtjgwmUEqWRMpfya_6ouNbhd1XfA\",\n"} +{"Time":"2020-04-21T17:17:28.427463+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.427467+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.42747+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.427474+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39579388:38\",\n"} +{"Time":"2020-04-21T17:17:28.427477+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Alvu_A7o33lVQ7hlqjro0RTIoRytCQojNi3Q47Ky3ZM.record\",\n"} +{"Time":"2020-04-21T17:17:28.42748+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"3990000000000\",\n"} +{"Time":"2020-04-21T17:17:28.427483+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.42749+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585814651,\n"} +{"Time":"2020-04-21T17:17:28.427493+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.427496+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39579388,\n"} +{"Time":"2020-04-21T17:17:28.427499+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.427503+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.427506+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.427509+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.427512+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Alrmj4GPrBp-yYrB23FmQqZiz-8aR5zoLkaBeDXyS1A\"\n"} +{"Time":"2020-04-21T17:17:28.427519+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.427522+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.427525+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39521678:14\",\n"} +{"Time":"2020-04-21T17:17:28.427855+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlsNjnOC3LRS4SdDpYdI-cKGle80ambKL_HqsqTDoIg.record\",\n"} +{"Time":"2020-04-21T17:17:28.427865+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"3226890028911\",\n"} +{"Time":"2020-04-21T17:17:28.42787+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.427873+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585756941,\n"} +{"Time":"2020-04-21T17:17:28.427877+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.427887+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39521678,\n"} +{"Time":"2020-04-21T17:17:28.42789+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.427894+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.427897+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.427901+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.427904+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AlrjybdhmP59Fb1Pm-HSrQw6ROKsCa_ZAJ0dF0zReSU\"\n"} +{"Time":"2020-04-21T17:17:28.427908+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.427911+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.427914+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39521148:32\",\n"} +{"Time":"2020-04-21T17:17:28.427918+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlsLfFMeQoFXJ9JaHUiXsMUH5T3xoP5aYNxWMmWjzqw.record\",\n"} +{"Time":"2020-04-21T17:17:28.427921+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.427924+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.427928+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585756411,\n"} +{"Time":"2020-04-21T17:17:28.427931+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.427934+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39521148,\n"} +{"Time":"2020-04-21T17:17:28.427938+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.427941+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.427989+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.427993+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.427996+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Alrmj4GPrBp-yYrB23FmQqZiz-8aR5zoLkaBeDXyS1A\"\n"} +{"Time":"2020-04-21T17:17:28.428+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.428003+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.428006+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39521108:49\",\n"} +{"Time":"2020-04-21T17:17:28.428009+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlsLVF7Nb5QyrR0jYshHEv8QBEMzGEX6Kko-waiX-Fs.record\",\n"} +{"Time":"2020-04-21T17:17:28.428016+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.428019+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.428022+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585756371,\n"} +{"Time":"2020-04-21T17:17:28.428177+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.428182+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39521108,\n"} +{"Time":"2020-04-21T17:17:28.428185+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.428188+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.428194+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.428198+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.428205+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.428209+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.428212+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.428215+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39521068:38\",\n"} +{"Time":"2020-04-21T17:17:28.428218+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlsLLNpzrfcQU9vW4ZhRb7WUgqdE82DbI_UakIe98fI.record\",\n"} +{"Time":"2020-04-21T17:17:28.428222+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"20000000000\",\n"} +{"Time":"2020-04-21T17:17:28.428226+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.428229+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585756331,\n"} +{"Time":"2020-04-21T17:17:28.428232+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.428236+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39521068,\n"} +{"Time":"2020-04-21T17:17:28.428239+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.428242+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.428249+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.428252+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.428256+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Alrxp0BAKzhrGg2_1pqXNMABGvcg-DUjpslMMZ-zz74\"\n"} +{"Time":"2020-04-21T17:17:28.428259+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.428262+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.428265+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39514535:92\",\n"} +{"Time":"2020-04-21T17:17:28.42827+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Alrxp8WXLBz5QJ-I7dLIhgLXvG8_4AtN_HAJpvJwSM8.record\",\n"} +{"Time":"2020-04-21T17:17:28.428273+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"2000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.428276+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.42828+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585749798,\n"} +{"Time":"2020-04-21T17:17:28.428286+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.42829+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39514535,\n"} +{"Time":"2020-04-21T17:17:28.428293+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.428296+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.428299+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.428483+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1Alrxp0BAKzhrGg2_1pqXNMABGvcg-DUjpslMMZ-zz74\",\n"} +{"Time":"2020-04-21T17:17:28.428494+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.428499+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.428504+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.428508+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39512245:13\",\n"} +{"Time":"2020-04-21T17:17:28.428511+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlrotewUoYcuCknA-ZJxc3uXJwtamJdYEdkkQ4DDnwU.record\",\n"} +{"Time":"2020-04-21T17:17:28.428515+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"259138779\",\n"} +{"Time":"2020-04-21T17:17:28.428518+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.428522+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585747508,\n"} +{"Time":"2020-04-21T17:17:28.428525+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.428528+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39512245,\n"} +{"Time":"2020-04-21T17:17:28.428532+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.428535+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.428539+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.428542+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.428545+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.428549+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.428552+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.428555+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39512025:17\",\n"} +{"Time":"2020-04-21T17:17:28.428558+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Alrn2VmefBLimKX0jgAV-vXPM5NxYZhWbLkq3UyfSts.record\",\n"} +{"Time":"2020-04-21T17:17:28.428562+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"1028748985\",\n"} +{"Time":"2020-04-21T17:17:28.428565+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.428569+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585747288,\n"} +{"Time":"2020-04-21T17:17:28.428572+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.428575+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39512025,\n"} +{"Time":"2020-04-21T17:17:28.428583+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.428587+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.428591+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.428594+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.428597+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AlrjybdhmP59Fb1Pm-HSrQw6ROKsCa_ZAJ0dF0zReSU\"\n"} +{"Time":"2020-04-21T17:17:28.428601+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.428604+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.428607+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39511975:26\",\n"} +{"Time":"2020-04-21T17:17:28.42861+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlrnpzgkIh0Q04bUapvUyYi8i-o7RWXbHcU-Ax0k07E.record\",\n"} +{"Time":"2020-04-21T17:17:28.428618+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"259138779\",\n"} +{"Time":"2020-04-21T17:17:28.428622+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.428625+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585747238,\n"} +{"Time":"2020-04-21T17:17:28.428628+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.428632+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39511975,\n"} +{"Time":"2020-04-21T17:17:28.428635+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.428638+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.428642+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.428649+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.428652+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.428657+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.428663+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.428666+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39511695:128\",\n"} +{"Time":"2020-04-21T17:17:28.428669+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Alrmjw3HUCi4RDMD1cp_tkeSCko9kn0XWwUNEPMCFJo.record\",\n"} +{"Time":"2020-04-21T17:17:28.428673+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"4000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.428679+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.428683+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585746958,\n"} +{"Time":"2020-04-21T17:17:28.428686+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.428692+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39511695,\n"} +{"Time":"2020-04-21T17:17:28.428695+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.428699+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.428702+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.428706+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1Alrmj4GPrBp-yYrB23FmQqZiz-8aR5zoLkaBeDXyS1A\",\n"} +{"Time":"2020-04-21T17:17:28.428709+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.428712+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.428715+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.428718+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39511345:46\",\n"} +{"Time":"2020-04-21T17:17:28.428722+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlrlMTBGrdT3xUaL6zIPJV_rjYZK1FfVulYrKS2Q_O0.record\",\n"} +{"Time":"2020-04-21T17:17:28.428725+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"34550710\",\n"} +{"Time":"2020-04-21T17:17:28.428728+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.429004+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585746608,\n"} +{"Time":"2020-04-21T17:17:28.429013+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.429016+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39511345,\n"} +{"Time":"2020-04-21T17:17:28.42902+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.429023+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.429026+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.429033+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.429036+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AlrjybdhmP59Fb1Pm-HSrQw6ROKsCa_ZAJ0dF0zReSU\"\n"} +{"Time":"2020-04-21T17:17:28.42904+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.429043+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.429046+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39511325:44\",\n"} +{"Time":"2020-04-21T17:17:28.429049+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlrlHdU3pJnF6hH8DWkQg8ojZH3EoGoznqhM12rdp4s.record\",\n"} +{"Time":"2020-04-21T17:17:28.429053+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"324588069\",\n"} +{"Time":"2020-04-21T17:17:28.429056+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.429063+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585746588,\n"} +{"Time":"2020-04-21T17:17:28.429067+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.42907+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39511325,\n"} +{"Time":"2020-04-21T17:17:28.429073+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.429076+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.42908+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.429083+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.429086+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AlrjybdhmP59Fb1Pm-HSrQw6ROKsCa_ZAJ0dF0zReSU\"\n"} +{"Time":"2020-04-21T17:17:28.42909+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.429096+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.429099+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39510985:189\",\n"} +{"Time":"2020-04-21T17:17:28.429102+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlrjyXdurgwFZS2sF0DHgUO1jWnwmVftBTqk3eIHAYY.record\",\n"} +{"Time":"2020-04-21T17:17:28.429106+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"4000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.429109+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.429112+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585746248,\n"} +{"Time":"2020-04-21T17:17:28.429115+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.429118+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39510985,\n"} +{"Time":"2020-04-21T17:17:28.429122+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.429321+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.429328+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.429331+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AlrjybdhmP59Fb1Pm-HSrQw6ROKsCa_ZAJ0dF0zReSU\",\n"} +{"Time":"2020-04-21T17:17:28.429335+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.429338+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.429341+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.429344+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39510165:44\",\n"} +{"Time":"2020-04-21T17:17:28.429347+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Alrgle3kUlo1L8s45QFW3b8fLchPiiFYrxyzUsIdnBM.record\",\n"} +{"Time":"2020-04-21T17:17:28.429352+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.429356+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585745428,\n"} +{"Time":"2020-04-21T17:17:28.429359+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.429366+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39510165,\n"} +{"Time":"2020-04-21T17:17:28.429369+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.429372+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.429376+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.429379+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.429382+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.429385+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.429389+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" ]\n"} +{"Time":"2020-04-21T17:17:28.429392+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.429395+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/transactions/closed?index=39510165%3A44\u0026limit=200\u0026order=reverse\n"} +{"Time":"2020-04-21T17:17:28.429399+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:36: Query params: map[index:[39510165:44] limit:[200] order:[reverse]]\n"} +{"Time":"2020-04-21T17:17:28.429402+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.429406+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.429409+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.429412+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:54: http status: 204 No Content\n"} +{"Time":"2020-04-21T17:17:28.429415+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.429418+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" null\n"} +{"Time":"2020-04-21T17:17:28.429422+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.429425+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/transactions/closed?limit=200\u0026order=chronological\n"} +{"Time":"2020-04-21T17:17:28.429429+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:36: Query params: map[limit:[200] order:[chronological]]\n"} +{"Time":"2020-04-21T17:17:28.429432+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.429437+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.429441+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.429444+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.429447+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.42945+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" [\n"} +{"Time":"2020-04-21T17:17:28.429453+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.429456+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39510165:44\",\n"} +{"Time":"2020-04-21T17:17:28.429459+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Alrgle3kUlo1L8s45QFW3b8fLchPiiFYrxyzUsIdnBM.record\",\n"} +{"Time":"2020-04-21T17:17:28.429463+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.429466+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585745428,\n"} +{"Time":"2020-04-21T17:17:28.429469+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.429472+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39510165,\n"} +{"Time":"2020-04-21T17:17:28.429476+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.429479+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.429482+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.42949+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.429494+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.429497+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.4295+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.429503+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39510985:189\",\n"} +{"Time":"2020-04-21T17:17:28.429506+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlrjyXdurgwFZS2sF0DHgUO1jWnwmVftBTqk3eIHAYY.record\",\n"} +{"Time":"2020-04-21T17:17:28.42951+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"4000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.429513+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.429516+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585746248,\n"} +{"Time":"2020-04-21T17:17:28.429519+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.429523+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39510985,\n"} +{"Time":"2020-04-21T17:17:28.429526+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.429529+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.429532+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.429536+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AlrjybdhmP59Fb1Pm-HSrQw6ROKsCa_ZAJ0dF0zReSU\",\n"} +{"Time":"2020-04-21T17:17:28.429542+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.429545+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.429834+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.429837+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39511325:44\",\n"} +{"Time":"2020-04-21T17:17:28.429841+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlrlHdU3pJnF6hH8DWkQg8ojZH3EoGoznqhM12rdp4s.record\",\n"} +{"Time":"2020-04-21T17:17:28.429844+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"324588069\",\n"} +{"Time":"2020-04-21T17:17:28.429847+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.429851+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585746588,\n"} +{"Time":"2020-04-21T17:17:28.429854+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.429857+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39511325,\n"} +{"Time":"2020-04-21T17:17:28.429865+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.429868+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.429872+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.429875+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.429878+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AlrjybdhmP59Fb1Pm-HSrQw6ROKsCa_ZAJ0dF0zReSU\"\n"} +{"Time":"2020-04-21T17:17:28.429881+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.429885+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.429888+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39511345:46\",\n"} +{"Time":"2020-04-21T17:17:28.429891+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlrlMTBGrdT3xUaL6zIPJV_rjYZK1FfVulYrKS2Q_O0.record\",\n"} +{"Time":"2020-04-21T17:17:28.429894+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"34550710\",\n"} +{"Time":"2020-04-21T17:17:28.429897+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.429901+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585746608,\n"} +{"Time":"2020-04-21T17:17:28.429908+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.429911+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39511345,\n"} +{"Time":"2020-04-21T17:17:28.429914+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.429917+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.429921+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.429924+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.429927+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AlrjybdhmP59Fb1Pm-HSrQw6ROKsCa_ZAJ0dF0zReSU\"\n"} +{"Time":"2020-04-21T17:17:28.42993+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.429934+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.42994+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39511695:128\",\n"} +{"Time":"2020-04-21T17:17:28.429943+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Alrmjw3HUCi4RDMD1cp_tkeSCko9kn0XWwUNEPMCFJo.record\",\n"} +{"Time":"2020-04-21T17:17:28.429946+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"4000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.430123+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.430127+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585746958,\n"} +{"Time":"2020-04-21T17:17:28.43013+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.430133+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39511695,\n"} +{"Time":"2020-04-21T17:17:28.430136+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.43014+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.430145+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.430148+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1Alrmj4GPrBp-yYrB23FmQqZiz-8aR5zoLkaBeDXyS1A\",\n"} +{"Time":"2020-04-21T17:17:28.430152+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.430155+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.430158+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.430161+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39511975:26\",\n"} +{"Time":"2020-04-21T17:17:28.430167+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlrnpzgkIh0Q04bUapvUyYi8i-o7RWXbHcU-Ax0k07E.record\",\n"} +{"Time":"2020-04-21T17:17:28.430171+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"259138779\",\n"} +{"Time":"2020-04-21T17:17:28.430174+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.430177+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585747238,\n"} +{"Time":"2020-04-21T17:17:28.430181+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.430184+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39511975,\n"} +{"Time":"2020-04-21T17:17:28.430187+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.430191+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.430194+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.430198+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.430201+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.430204+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.430207+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.43021+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39512025:17\",\n"} +{"Time":"2020-04-21T17:17:28.430213+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Alrn2VmefBLimKX0jgAV-vXPM5NxYZhWbLkq3UyfSts.record\",\n"} +{"Time":"2020-04-21T17:17:28.430217+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"1028748985\",\n"} +{"Time":"2020-04-21T17:17:28.43022+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.430223+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585747288,\n"} +{"Time":"2020-04-21T17:17:28.430226+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.43023+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39512025,\n"} +{"Time":"2020-04-21T17:17:28.430236+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.430239+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.430243+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.430246+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.430249+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AlrjybdhmP59Fb1Pm-HSrQw6ROKsCa_ZAJ0dF0zReSU\"\n"} +{"Time":"2020-04-21T17:17:28.430253+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.430256+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.430259+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39512245:13\",\n"} +{"Time":"2020-04-21T17:17:28.430262+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlrotewUoYcuCknA-ZJxc3uXJwtamJdYEdkkQ4DDnwU.record\",\n"} +{"Time":"2020-04-21T17:17:28.430265+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"259138779\",\n"} +{"Time":"2020-04-21T17:17:28.430269+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.430272+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585747508,\n"} +{"Time":"2020-04-21T17:17:28.430275+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.430278+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39512245,\n"} +{"Time":"2020-04-21T17:17:28.430281+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.430284+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.430288+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.430291+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.430294+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.430298+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.430301+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.430304+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39514535:92\",\n"} +{"Time":"2020-04-21T17:17:28.430307+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Alrxp8WXLBz5QJ-I7dLIhgLXvG8_4AtN_HAJpvJwSM8.record\",\n"} +{"Time":"2020-04-21T17:17:28.43031+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"2000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.430313+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.430317+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585749798,\n"} +{"Time":"2020-04-21T17:17:28.43032+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.430323+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39514535,\n"} +{"Time":"2020-04-21T17:17:28.430326+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.430329+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.430333+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.430338+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1Alrxp0BAKzhrGg2_1pqXNMABGvcg-DUjpslMMZ-zz74\",\n"} +{"Time":"2020-04-21T17:17:28.430657+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.430665+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.430668+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.430671+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39521068:38\",\n"} +{"Time":"2020-04-21T17:17:28.430675+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlsLLNpzrfcQU9vW4ZhRb7WUgqdE82DbI_UakIe98fI.record\",\n"} +{"Time":"2020-04-21T17:17:28.430678+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"20000000000\",\n"} +{"Time":"2020-04-21T17:17:28.430681+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.430685+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585756331,\n"} +{"Time":"2020-04-21T17:17:28.430688+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.430691+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39521068,\n"} +{"Time":"2020-04-21T17:17:28.430694+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.430698+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.430707+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.430711+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.430714+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Alrxp0BAKzhrGg2_1pqXNMABGvcg-DUjpslMMZ-zz74\"\n"} +{"Time":"2020-04-21T17:17:28.430717+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.430721+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.430724+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39521108:49\",\n"} +{"Time":"2020-04-21T17:17:28.430727+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlsLVF7Nb5QyrR0jYshHEv8QBEMzGEX6Kko-waiX-Fs.record\",\n"} +{"Time":"2020-04-21T17:17:28.430731+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.430734+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.430737+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585756371,\n"} +{"Time":"2020-04-21T17:17:28.430741+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.430747+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39521108,\n"} +{"Time":"2020-04-21T17:17:28.430751+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.430754+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.430757+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.430761+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.430764+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.430767+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.430771+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.430778+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39521148:32\",\n"} +{"Time":"2020-04-21T17:17:28.430782+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlsLfFMeQoFXJ9JaHUiXsMUH5T3xoP5aYNxWMmWjzqw.record\",\n"} +{"Time":"2020-04-21T17:17:28.430785+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.430789+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.430795+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585756411,\n"} +{"Time":"2020-04-21T17:17:28.430798+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.430802+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39521148,\n"} +{"Time":"2020-04-21T17:17:28.430805+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.430808+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.430812+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.430815+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.430818+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Alrmj4GPrBp-yYrB23FmQqZiz-8aR5zoLkaBeDXyS1A\"\n"} +{"Time":"2020-04-21T17:17:28.430821+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.430824+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.430827+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39521678:14\",\n"} +{"Time":"2020-04-21T17:17:28.430831+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlsNjnOC3LRS4SdDpYdI-cKGle80ambKL_HqsqTDoIg.record\",\n"} +{"Time":"2020-04-21T17:17:28.430834+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"3226890028911\",\n"} +{"Time":"2020-04-21T17:17:28.430837+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.430841+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585756941,\n"} +{"Time":"2020-04-21T17:17:28.430844+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.430847+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39521678,\n"} +{"Time":"2020-04-21T17:17:28.430853+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.430857+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.43086+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.430863+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.430867+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AlrjybdhmP59Fb1Pm-HSrQw6ROKsCa_ZAJ0dF0zReSU\"\n"} +{"Time":"2020-04-21T17:17:28.43087+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.430873+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.430876+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39579388:38\",\n"} +{"Time":"2020-04-21T17:17:28.430882+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Alvu_A7o33lVQ7hlqjro0RTIoRytCQojNi3Q47Ky3ZM.record\",\n"} +{"Time":"2020-04-21T17:17:28.430886+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"3990000000000\",\n"} +{"Time":"2020-04-21T17:17:28.430889+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.430892+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585814651,\n"} +{"Time":"2020-04-21T17:17:28.430896+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.431195+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39579388,\n"} +{"Time":"2020-04-21T17:17:28.431199+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.431203+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.431207+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.43121+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.431213+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Alrmj4GPrBp-yYrB23FmQqZiz-8aR5zoLkaBeDXyS1A\"\n"} +{"Time":"2020-04-21T17:17:28.431217+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.43122+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.431223+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39586128:164\",\n"} +{"Time":"2020-04-21T17:17:28.431226+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlwJUHkOmIuOKjh-9GVsMx1i9WCqcpZoC2ekPcKF3fQ.record\",\n"} +{"Time":"2020-04-21T17:17:28.431229+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"2000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.431233+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.431236+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585821391,\n"} +{"Time":"2020-04-21T17:17:28.431239+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.431246+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39586128,\n"} +{"Time":"2020-04-21T17:17:28.431249+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.431252+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.431256+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.431259+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AlwJUAnGPg9TosLWtjgwmUEqWRMpfya_6ouNbhd1XfA\",\n"} +{"Time":"2020-04-21T17:17:28.431262+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.431266+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.431269+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.431272+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39586158:2\",\n"} +{"Time":"2020-04-21T17:17:28.431275+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlwJbgHT6BN56RZMERB-F6gp6SaT-sUZ54PNp2KP01k.record\",\n"} +{"Time":"2020-04-21T17:17:28.431278+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"771722083325\",\n"} +{"Time":"2020-04-21T17:17:28.431282+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.431285+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585821421,\n"} +{"Time":"2020-04-21T17:17:28.431291+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.431294+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39586158,\n"} +{"Time":"2020-04-21T17:17:28.431297+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.431301+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.431304+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.431307+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.43131+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AlrjybdhmP59Fb1Pm-HSrQw6ROKsCa_ZAJ0dF0zReSU\"\n"} +{"Time":"2020-04-21T17:17:28.431314+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.431317+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.43132+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39610768:24\",\n"} +{"Time":"2020-04-21T17:17:28.431323+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AlxpkHHu3-fnU83FhLeUYESr6rQZGTTEGwc-fUQF7i8.record\",\n"} +{"Time":"2020-04-21T17:17:28.431327+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.43133+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.431333+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585846031,\n"} +{"Time":"2020-04-21T17:17:28.431336+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.431339+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39610768,\n"} +{"Time":"2020-04-21T17:17:28.431343+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.431346+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.431349+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.431352+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.431357+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.43136+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.431363+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.431367+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39688178:135\",\n"} +{"Time":"2020-04-21T17:17:28.43137+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Al2X8jk1oArjVgE5maTNqynC9-Lgj-pICdP6F8MbtX8.record\",\n"} +{"Time":"2020-04-21T17:17:28.431373+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"2000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.43138+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.431383+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585923441,\n"} +{"Time":"2020-04-21T17:17:28.431386+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.431389+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39688178,\n"} +{"Time":"2020-04-21T17:17:28.431392+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.431396+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.431402+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.431406+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1Al2X8nZJs8QuWpzmss4dyL6NJsE62VW84SmxZq6ifIA\",\n"} +{"Time":"2020-04-21T17:17:28.431409+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.431413+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.431416+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.431704+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39688278:7\",\n"} +{"Time":"2020-04-21T17:17:28.431708+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Al2YVhvB0Q78mSaFYuy3Vpl6sAgLBJVt_dIUHf7WBWs.record\",\n"} +{"Time":"2020-04-21T17:17:28.431711+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"27581178\",\n"} +{"Time":"2020-04-21T17:17:28.431714+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.431718+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585923541,\n"} +{"Time":"2020-04-21T17:17:28.431721+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.431724+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39688278,\n"} +{"Time":"2020-04-21T17:17:28.43173+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.43174+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.431744+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.431747+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.43175+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Al2X8nZJs8QuWpzmss4dyL6NJsE62VW84SmxZq6ifIA\"\n"} +{"Time":"2020-04-21T17:17:28.431753+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.431756+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.431759+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39688358:160\",\n"} +{"Time":"2020-04-21T17:17:28.431763+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Al2Yplz6rOsMFVbfMNmiL8lNQD1byo5v0CFUCq6N-00.record\",\n"} +{"Time":"2020-04-21T17:17:28.431766+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"200000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.43177+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.431773+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585923621,\n"} +{"Time":"2020-04-21T17:17:28.431776+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.431779+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39688358,\n"} +{"Time":"2020-04-21T17:17:28.431782+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.431787+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.43179+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.431794+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1Al2YpvWnH1MTAK-f79TeIBp6ZBPmYutnsB4GINHhgF8\",\n"} +{"Time":"2020-04-21T17:17:28.431797+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.4318+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.431803+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.431807+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39688488:24\",\n"} +{"Time":"2020-04-21T17:17:28.43181+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Al2ZKPU8eaNmCZDVVCX7UDLRfNNx7OnOrYs9DbXomA4.record\",\n"} +{"Time":"2020-04-21T17:17:28.431813+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"112266722\",\n"} +{"Time":"2020-04-21T17:17:28.431816+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.43182+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585923751,\n"} +{"Time":"2020-04-21T17:17:28.431823+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.431826+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39688488,\n"} +{"Time":"2020-04-21T17:17:28.43183+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.431833+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.431836+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.431839+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.431843+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Al2X8nZJs8QuWpzmss4dyL6NJsE62VW84SmxZq6ifIA\"\n"} +{"Time":"2020-04-21T17:17:28.431848+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.431851+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.431854+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39688508:16\",\n"} +{"Time":"2020-04-21T17:17:28.431857+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Al2ZPOceXEHd8wVA6sNcLxovpsNeY1pbSPRvNsX7l1w.record\",\n"} +{"Time":"2020-04-21T17:17:28.43186+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"6134333507\",\n"} +{"Time":"2020-04-21T17:17:28.431864+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.431867+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585923771,\n"} +{"Time":"2020-04-21T17:17:28.43187+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.431873+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39688508,\n"} +{"Time":"2020-04-21T17:17:28.431876+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.43188+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.431887+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.431891+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.431894+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Al2YpvWnH1MTAK-f79TeIBp6ZBPmYutnsB4GINHhgF8\"\n"} +{"Time":"2020-04-21T17:17:28.431897+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.4319+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.431904+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39688578:34\",\n"} +{"Time":"2020-04-21T17:17:28.431907+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Al2Zgr_8JyJldnVAI5_tF8Kvhtl5QICBMhtuBlqAJzc.record\",\n"} +{"Time":"2020-04-21T17:17:28.43191+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.431913+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.431916+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585923841,\n"} +{"Time":"2020-04-21T17:17:28.43192+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.431923+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39688578,\n"} +{"Time":"2020-04-21T17:17:28.431929+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.431933+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.43221+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.432213+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.432217+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.43222+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.432223+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.432226+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39688638:21\",\n"} +{"Time":"2020-04-21T17:17:28.432229+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Al2ZvvdAjisBxhO7E0FX6oDmtyw4zuzvcLwAG4TKpWs.record\",\n"} +{"Time":"2020-04-21T17:17:28.432233+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.432236+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.432239+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585923901,\n"} +{"Time":"2020-04-21T17:17:28.432246+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.43225+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39688638,\n"} +{"Time":"2020-04-21T17:17:28.432253+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.432256+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.43226+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.432264+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.432267+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.43227+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.432273+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.432276+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39690298:48\",\n"} +{"Time":"2020-04-21T17:17:28.432279+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Al2gOkef3typVu-gTfTkkT0eS6SvSYw3XHamDdqezes.record\",\n"} +{"Time":"2020-04-21T17:17:28.432283+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.432286+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.432289+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1585925561,\n"} +{"Time":"2020-04-21T17:17:28.432292+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.432296+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39690298,\n"} +{"Time":"2020-04-21T17:17:28.432299+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.432302+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.432305+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.432309+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.432312+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.432315+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.432318+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.432322+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39941230:29\",\n"} +{"Time":"2020-04-21T17:17:28.432325+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmF0bhjOYfZfxJkDpR36uwt37lj3WerEL95XiXxENxM.record\",\n"} +{"Time":"2020-04-21T17:17:28.432331+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.432336+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.432339+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586176493,\n"} +{"Time":"2020-04-21T17:17:28.432343+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.432346+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39941230,\n"} +{"Time":"2020-04-21T17:17:28.432349+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.432352+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.432356+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.432359+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.432362+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Alrxp0BAKzhrGg2_1pqXNMABGvcg-DUjpslMMZ-zz74\"\n"} +{"Time":"2020-04-21T17:17:28.432368+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.432372+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.432375+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39941540:32\",\n"} +{"Time":"2020-04-21T17:17:28.432378+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmF1pFnw3cWe6tzANL9UhWdjL3c0Zi-KS0p0Q63MDGY.record\",\n"} +{"Time":"2020-04-21T17:17:28.432381+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.432384+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.432393+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586176803,\n"} +{"Time":"2020-04-21T17:17:28.432396+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.432399+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39941540,\n"} +{"Time":"2020-04-21T17:17:28.432402+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.432406+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AmE3VuQ0rUaWSQi-4t1g2vCwG-po8ddqMx_j5D4uT8U\",\n"} +{"Time":"2020-04-21T17:17:28.432409+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.432412+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.432415+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.432419+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.432422+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.432425+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39944690:25\",\n"} +{"Time":"2020-04-21T17:17:28.432428+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmGB8oaa-KFHXi90vYCbUv6BZaL1iOyBmPPqM7bXJKA.record\",\n"} +{"Time":"2020-04-21T17:17:28.432431+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"199993865666493\",\n"} +{"Time":"2020-04-21T17:17:28.432735+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.432738+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586179953,\n"} +{"Time":"2020-04-21T17:17:28.432742+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.432745+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39944690,\n"} +{"Time":"2020-04-21T17:17:28.432748+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.432751+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.432755+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.432758+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.432761+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Al2YpvWnH1MTAK-f79TeIBp6ZBPmYutnsB4GINHhgF8\"\n"} +{"Time":"2020-04-21T17:17:28.432764+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.432767+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.43277+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39949190:42\",\n"} +{"Time":"2020-04-21T17:17:28.432774+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmGThoyVf68tH22pdmU1Pf_-9V_xVfW8oy3y3UHZjpo.record\",\n"} +{"Time":"2020-04-21T17:17:28.432777+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.432782+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.432785+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586184453,\n"} +{"Time":"2020-04-21T17:17:28.432788+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.432791+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39949190,\n"} +{"Time":"2020-04-21T17:17:28.432794+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.432798+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.432801+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.432804+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.432807+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Alrxp0BAKzhrGg2_1pqXNMABGvcg-DUjpslMMZ-zz74\"\n"} +{"Time":"2020-04-21T17:17:28.432811+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.432814+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.43282+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39949220:61\",\n"} +{"Time":"2020-04-21T17:17:28.432824+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmGTpOXOzA6zoyG9tUMn5YnJqrEDvA3CqZo3ukcU2zM.record\",\n"} +{"Time":"2020-04-21T17:17:28.432827+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.43283+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.432833+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586184483,\n"} +{"Time":"2020-04-21T17:17:28.43284+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.432843+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39949220,\n"} +{"Time":"2020-04-21T17:17:28.432846+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.43285+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.432853+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.432857+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.43286+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.432863+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.432866+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.432869+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39949820:27\",\n"} +{"Time":"2020-04-21T17:17:28.432876+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmGV_E6cNutsV1APttAgmwgUQXZAXxTu2K0R2hZYgCU.record\",\n"} +{"Time":"2020-04-21T17:17:28.432879+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"400000000000\",\n"} +{"Time":"2020-04-21T17:17:28.432882+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.432886+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586185083,\n"} +{"Time":"2020-04-21T17:17:28.43289+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.432894+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39949820,\n"} +{"Time":"2020-04-21T17:17:28.432897+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.4329+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.432903+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.432907+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.432913+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.432916+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.432919+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.432922+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39955830:20\",\n"} +{"Time":"2020-04-21T17:17:28.432925+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmGtdq4Fgidc-c1vv-oLURiH2bJTVQRYlp16ObsaBnU.record\",\n"} +{"Time":"2020-04-21T17:17:28.432929+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.432932+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.432935+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586191093,\n"} +{"Time":"2020-04-21T17:17:28.432938+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.432941+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39955830,\n"} +{"Time":"2020-04-21T17:17:28.432945+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.432948+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.432951+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.432954+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.433246+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Alrxp0BAKzhrGg2_1pqXNMABGvcg-DUjpslMMZ-zz74\"\n"} +{"Time":"2020-04-21T17:17:28.433249+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.433252+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.433256+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"39956100:4\",\n"} +{"Time":"2020-04-21T17:17:28.43326+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmGuhApLJ8DjJnqCF3cZe_iG9cq9Iw8J_Stsw93zt8k.record\",\n"} +{"Time":"2020-04-21T17:17:28.433263+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.433267+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.43327+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586191363,\n"} +{"Time":"2020-04-21T17:17:28.433273+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.433276+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 39956100,\n"} +{"Time":"2020-04-21T17:17:28.433279+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.433283+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.433286+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.433289+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.433293+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.433296+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.433299+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.433302+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40012520:16\",\n"} +{"Time":"2020-04-21T17:17:28.433305+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmKK6ILtm5eJ1Wpax2iTOCvF-TxKEpaQr0TRK0nnwZU.record\",\n"} +{"Time":"2020-04-21T17:17:28.433312+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000\",\n"} +{"Time":"2020-04-21T17:17:28.433315+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.433318+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586247783,\n"} +{"Time":"2020-04-21T17:17:28.433322+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.433325+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40012520,\n"} +{"Time":"2020-04-21T17:17:28.433328+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.433334+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Alq7PUmdgS1bgkib4EirvxmQThZSS7i8190MdOlp70A\",\n"} +{"Time":"2020-04-21T17:17:28.433341+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.433344+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.43335+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.433354+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.433357+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.43336+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40016030:42\",\n"} +{"Time":"2020-04-21T17:17:28.433363+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmKYnlb4zqdBMPFj4Uh8cjtCp2e3MzjWFLNUpLIUofY.record\",\n"} +{"Time":"2020-04-21T17:17:28.433367+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"1999860152100\",\n"} +{"Time":"2020-04-21T17:17:28.433371+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.433374+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586251293,\n"} +{"Time":"2020-04-21T17:17:28.433378+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.433381+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40016030,\n"} +{"Time":"2020-04-21T17:17:28.433384+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.433387+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.433391+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.433394+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.433397+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Al2X8nZJs8QuWpzmss4dyL6NJsE62VW84SmxZq6ifIA\"\n"} +{"Time":"2020-04-21T17:17:28.4334+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.433403+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.433406+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40021840:15\",\n"} +{"Time":"2020-04-21T17:17:28.43341+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmKvULlN72P456u9O2LoFMAmuT30h_BVI9Xxtprovlc.record\",\n"} +{"Time":"2020-04-21T17:17:28.433413+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000\",\n"} +{"Time":"2020-04-21T17:17:28.433416+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.433419+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586257103,\n"} +{"Time":"2020-04-21T17:17:28.433422+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.433426+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40021840,\n"} +{"Time":"2020-04-21T17:17:28.433429+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.433432+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.433435+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.433438+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.433442+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AlwJUAnGPg9TosLWtjgwmUEqWRMpfya_6ouNbhd1XfA\"\n"} +{"Time":"2020-04-21T17:17:28.433445+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.433449+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.433452+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40022780:44\",\n"} +{"Time":"2020-04-21T17:17:28.433456+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmKy_C8SJxFKNd_s6pU4bcedevldSJeuRD3XfLP6G3Q.record\",\n"} +{"Time":"2020-04-21T17:17:28.433459+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"2000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.433462+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.433465+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586258043,\n"} +{"Time":"2020-04-21T17:17:28.433469+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.43375+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40022780,\n"} +{"Time":"2020-04-21T17:17:28.43376+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.433764+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AmGBID-H_5mtbLwG8_F1aFj6xwshlTf4BpDJ2yfHIvw\",\n"} +{"Time":"2020-04-21T17:17:28.433767+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.433771+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.433774+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.433777+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.43378+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.433783+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40024100:6\",\n"} +{"Time":"2020-04-21T17:17:28.433787+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmK4JK7lzsmW_uW55JwqjqgBKIpLsohVY4QsGRjo9KY.record\",\n"} +{"Time":"2020-04-21T17:17:28.43379+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10000000000\",\n"} +{"Time":"2020-04-21T17:17:28.433793+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.433796+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586259363,\n"} +{"Time":"2020-04-21T17:17:28.433799+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.433806+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40024100,\n"} +{"Time":"2020-04-21T17:17:28.43381+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.433813+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.433817+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AmGBID-H_5mtbLwG8_F1aFj6xwshlTf4BpDJ2yfHIvw\",\n"} +{"Time":"2020-04-21T17:17:28.43382+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.433823+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.433826+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.433829+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.433833+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40039070:156\",\n"} +{"Time":"2020-04-21T17:17:28.433836+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmLyng_UTy0H3f6vQAauf6FLNqnguIcrdUKxf0XTnjc.record\",\n"} +{"Time":"2020-04-21T17:17:28.433839+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"200000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.433842+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.433846+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586274333,\n"} +{"Time":"2020-04-21T17:17:28.433849+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.433852+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40039070,\n"} +{"Time":"2020-04-21T17:17:28.433855+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.433859+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.433862+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.433865+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AmLynmlxa8q7rhXIhn9fT8F9jWr4-FotsNeXIJ76Aro\",\n"} +{"Time":"2020-04-21T17:17:28.433869+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.433872+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.433875+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.433878+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40126740:152\",\n"} +{"Time":"2020-04-21T17:17:28.433881+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmRJFGlxWiWy2OyAgssDr4tQFY-ytJ6VbXea_WHwfZE.record\",\n"} +{"Time":"2020-04-21T17:17:28.433885+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"23400000000\",\n"} +{"Time":"2020-04-21T17:17:28.433889+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.433893+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586362003,\n"} +{"Time":"2020-04-21T17:17:28.433896+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.433899+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40126740,\n"} +{"Time":"2020-04-21T17:17:28.433902+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.433905+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Aji9hXgl8hkbfLlEKD5hZ0o2Z-UHzNSKkJd4kHIKYD0\",\n"} +{"Time":"2020-04-21T17:17:28.433909+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.433912+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AmRJFA7psXETlZPlZ5oiy0iIU9Mz11LU6w4f9Ske8nk\",\n"} +{"Time":"2020-04-21T17:17:28.433916+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.433919+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.433925+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.433928+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40127090:145\",\n"} +{"Time":"2020-04-21T17:17:28.433932+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmRKcj5blWM-IScTuebtW6M1b8VsMQbwNYdwH9ym1lU.record\",\n"} +{"Time":"2020-04-21T17:17:28.433935+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"34500000000\",\n"} +{"Time":"2020-04-21T17:17:28.433938+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.433941+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586362353,\n"} +{"Time":"2020-04-21T17:17:28.433945+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.433951+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40127090,\n"} +{"Time":"2020-04-21T17:17:28.433954+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.433957+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Aji9hXgl8hkbfLlEKD5hZ0o2Z-UHzNSKkJd4kHIKYD0\",\n"} +{"Time":"2020-04-21T17:17:28.433961+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.433964+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AmRKaL3SdY0WngBxfKXsqUMDajvjbRtUC_93h3DnuZM\",\n"} +{"Time":"2020-04-21T17:17:28.433972+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.433975+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.433978+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.434373+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40194990:101\",\n"} +{"Time":"2020-04-21T17:17:28.434376+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmVTrpCPEqyAANgWrwI8r83RxIgh02nUoIxJ8laGYoA.record\",\n"} +{"Time":"2020-04-21T17:17:28.43438+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000\",\n"} +{"Time":"2020-04-21T17:17:28.434383+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.434386+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586430253,\n"} +{"Time":"2020-04-21T17:17:28.434389+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.434393+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40194990,\n"} +{"Time":"2020-04-21T17:17:28.434399+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.434402+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.434406+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.434409+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AmVTpK6be6I6Dy6nUNLX9sMRuR6skKcuGo9UQJbev6U\",\n"} +{"Time":"2020-04-21T17:17:28.434413+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.434419+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.434422+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.434425+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40196160:6\",\n"} +{"Time":"2020-04-21T17:17:28.434428+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmVYQFq3vyBWYi198DMZzUaKeenF16oPLAIZE3qPJGI.record\",\n"} +{"Time":"2020-04-21T17:17:28.434432+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"1900000000000\",\n"} +{"Time":"2020-04-21T17:17:28.434435+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.434438+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586431423,\n"} +{"Time":"2020-04-21T17:17:28.434442+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.434445+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40196160,\n"} +{"Time":"2020-04-21T17:17:28.434448+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.434451+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.434455+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.434458+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.434461+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AlwJUAnGPg9TosLWtjgwmUEqWRMpfya_6ouNbhd1XfA\"\n"} +{"Time":"2020-04-21T17:17:28.434465+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.434468+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.434471+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40196580:15\",\n"} +{"Time":"2020-04-21T17:17:28.434474+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmVZ5KhbkI0AmK7dsx_Uej0ShWctfHrrDFcoAyzCO5k.record\",\n"} +{"Time":"2020-04-21T17:17:28.434477+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"110000000000\",\n"} +{"Time":"2020-04-21T17:17:28.434481+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.434484+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586431843,\n"} +{"Time":"2020-04-21T17:17:28.43449+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.434493+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40196580,\n"} +{"Time":"2020-04-21T17:17:28.434496+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.434499+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.434503+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.434506+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.43451+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.434513+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.434516+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.434519+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40197160:79\",\n"} +{"Time":"2020-04-21T17:17:28.434522+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmVcKAn1LFQSOpd1ng4BNkav9A52fr62xrP9glzDS08.record\",\n"} +{"Time":"2020-04-21T17:17:28.434525+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"1\",\n"} +{"Time":"2020-04-21T17:17:28.434532+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.434535+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586432423,\n"} +{"Time":"2020-04-21T17:17:28.434538+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.434542+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40197160,\n"} +{"Time":"2020-04-21T17:17:28.434545+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.434548+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.434552+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.434555+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.434558+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.434561+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.434564+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.434568+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40197660:22\",\n"} +{"Time":"2020-04-21T17:17:28.434571+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmVeHMXU0KsAPfd_F2FnmJylVYZTZlzjaxGSnAXEYtY.record\",\n"} +{"Time":"2020-04-21T17:17:28.434574+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"3548781722441\",\n"} +{"Time":"2020-04-21T17:17:28.434578+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586432923,\n"} +{"Time":"2020-04-21T17:17:28.434582+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.434585+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40197660,\n"} +{"Time":"2020-04-21T17:17:28.434588+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.434591+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.434926+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.43493+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.434936+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.434939+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.434943+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.434946+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40197660:62\",\n"} +{"Time":"2020-04-21T17:17:28.434949+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmVeHD1rg_P3mjyH1B2VkfD7L7V572jADrOhSh6nBsc.record\",\n"} +{"Time":"2020-04-21T17:17:28.434952+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"3548781722441\",\n"} +{"Time":"2020-04-21T17:17:28.434956+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.434959+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586432923,\n"} +{"Time":"2020-04-21T17:17:28.434962+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.434965+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40197660,\n"} +{"Time":"2020-04-21T17:17:28.434968+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.434972+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.434975+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.434978+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.434982+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.434985+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.434988+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.434994+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40199300:64\",\n"} +{"Time":"2020-04-21T17:17:28.434997+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmVkhEog-_BYRgZLJsz9gPQqGXdGW02ldSRpPU2IfJs.record\",\n"} +{"Time":"2020-04-21T17:17:28.435001+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10\",\n"} +{"Time":"2020-04-21T17:17:28.435004+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.435007+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586434563,\n"} +{"Time":"2020-04-21T17:17:28.43501+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.435014+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40199300,\n"} +{"Time":"2020-04-21T17:17:28.435017+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.43502+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.435034+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.435044+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AmVkhL9FLcyvCKnlnJtaY__NLu90STn_m_4USuyH9RQ\",\n"} +{"Time":"2020-04-21T17:17:28.435051+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.435054+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.435057+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.43506+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40206030:143\",\n"} +{"Time":"2020-04-21T17:17:28.435064+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmV-zsg6GmocsUcBkzCgNfmPxKuWNJXWLE-9Ul4xPPY.record\",\n"} +{"Time":"2020-04-21T17:17:28.435067+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000\",\n"} +{"Time":"2020-04-21T17:17:28.43507+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.435074+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586441293,\n"} +{"Time":"2020-04-21T17:17:28.435077+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.43508+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40206030,\n"} +{"Time":"2020-04-21T17:17:28.435083+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.435087+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.435095+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.435099+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AmV-zjnrgleEa1iQc6GOXU3wE-d_QezUtBPF5KYq1NU\",\n"} +{"Time":"2020-04-21T17:17:28.435102+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.435105+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.435108+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.435111+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40207010:288\",\n"} +{"Time":"2020-04-21T17:17:28.435115+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmWCorFNa6ZxNoD5zUmXKiDjvwR-AlX2f8tfjGNp9DE.record\",\n"} +{"Time":"2020-04-21T17:17:28.435121+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"1000\",\n"} +{"Time":"2020-04-21T17:17:28.435124+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.435128+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586442273,\n"} +{"Time":"2020-04-21T17:17:28.435131+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.435134+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40207010,\n"} +{"Time":"2020-04-21T17:17:28.435137+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.43514+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.435144+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.435147+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AmWCoh3AUDyW_9RNw_H86l3bcJiUuKWqnsKnkcctDM4\",\n"} +{"Time":"2020-04-21T17:17:28.43515+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.435154+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.435157+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.43516+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40207030:16\",\n"} +{"Time":"2020-04-21T17:17:28.435163+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmWCrEiqdR5eHfnqHoYVAYTY4RYRpicrWB6kegSCeXA.record\",\n"} +{"Time":"2020-04-21T17:17:28.435166+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100\",\n"} +{"Time":"2020-04-21T17:17:28.435439+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.435442+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586442293,\n"} +{"Time":"2020-04-21T17:17:28.435449+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.435452+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40207030,\n"} +{"Time":"2020-04-21T17:17:28.435456+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.435459+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.435462+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.435466+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AmWCrJsB1QN2TKr5Z9RIfpBRZ7OSAN5x2LPbE0-xJSc\",\n"} +{"Time":"2020-04-21T17:17:28.435469+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.435472+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.435475+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.435478+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40207060:155\",\n"} +{"Time":"2020-04-21T17:17:28.435482+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmWC1ClX9gi5SW_1EEo8cvvqcNw97B9_6km2422HNFk.record\",\n"} +{"Time":"2020-04-21T17:17:28.435485+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000010\",\n"} +{"Time":"2020-04-21T17:17:28.435488+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.435491+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586442323,\n"} +{"Time":"2020-04-21T17:17:28.435495+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.435498+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40207060,\n"} +{"Time":"2020-04-21T17:17:28.435501+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.435504+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.435507+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.435511+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AmWC1JOtZF7S2JjmOGGZvVGTav31589rTwsEzMxqfXU\",\n"} +{"Time":"2020-04-21T17:17:28.435514+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.435518+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.435521+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.435524+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40209410:2\",\n"} +{"Time":"2020-04-21T17:17:28.435527+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmWMAvqllix2yHmnPX_lQQByX_5FGGGsEqUl9JoO-Ec.record\",\n"} +{"Time":"2020-04-21T17:17:28.43553+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"5\",\n"} +{"Time":"2020-04-21T17:17:28.435533+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.435537+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586444673,\n"} +{"Time":"2020-04-21T17:17:28.43554+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.435543+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40209410,\n"} +{"Time":"2020-04-21T17:17:28.43555+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.435554+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.435557+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.435561+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.435564+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AmVkhL9FLcyvCKnlnJtaY__NLu90STn_m_4USuyH9RQ\"\n"} +{"Time":"2020-04-21T17:17:28.435567+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.43557+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.435573+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40209410:41\",\n"} +{"Time":"2020-04-21T17:17:28.435578+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmWMAs-rb9k6s-fPxGP04KHfWn3s_r4Ynr7PyU82PZY.record\",\n"} +{"Time":"2020-04-21T17:17:28.435581+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"5\",\n"} +{"Time":"2020-04-21T17:17:28.435584+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.435588+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586444673,\n"} +{"Time":"2020-04-21T17:17:28.435591+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.435594+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40209410,\n"} +{"Time":"2020-04-21T17:17:28.435597+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.4356+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.435604+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.43561+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.435614+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AmVkhL9FLcyvCKnlnJtaY__NLu90STn_m_4USuyH9RQ\"\n"} +{"Time":"2020-04-21T17:17:28.435617+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.43562+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.435623+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40282230:33\",\n"} +{"Time":"2020-04-21T17:17:28.435626+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Amaodk6ar2SUArSdHoxYNBjIvg3kDfLA_z7nsWPCD1I.record\",\n"} +{"Time":"2020-04-21T17:17:28.43563+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000\",\n"} +{"Time":"2020-04-21T17:17:28.435633+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.435636+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586517493,\n"} +{"Time":"2020-04-21T17:17:28.435639+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.435642+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40282230,\n"} +{"Time":"2020-04-21T17:17:28.435646+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.435649+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.435652+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.435659+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.43597+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AmLynmlxa8q7rhXIhn9fT8F9jWr4-FotsNeXIJ76Aro\"\n"} +{"Time":"2020-04-21T17:17:28.435975+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.435978+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.435981+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40291260:34\",\n"} +{"Time":"2020-04-21T17:17:28.435988+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AmbLvNM-bLnYPJJnWCPMnSa23q5QflLX4Svl1hY4GSI.record\",\n"} +{"Time":"2020-04-21T17:17:28.435992+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000\",\n"} +{"Time":"2020-04-21T17:17:28.435996+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.435999+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586526523,\n"} +{"Time":"2020-04-21T17:17:28.436002+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.436005+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40291260,\n"} +{"Time":"2020-04-21T17:17:28.436008+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.436012+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AlrH7zLI1WokQ5ZBKnHYVVF38VlvUDwZN2BXgwG-JpA\",\n"} +{"Time":"2020-04-21T17:17:28.436018+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.436022+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.436025+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AmVTpK6be6I6Dy6nUNLX9sMRuR6skKcuGo9UQJbev6U\"\n"} +{"Time":"2020-04-21T17:17:28.436028+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.436031+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.436035+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40717940:42\",\n"} +{"Time":"2020-04-21T17:17:28.436038+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am1OdFfKofv5Db4I9HKFm9uDF0zfzjOOS0DolJT__UI.record\",\n"} +{"Time":"2020-04-21T17:17:28.436041+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.436044+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586953203,\n"} +{"Time":"2020-04-21T17:17:28.436048+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.436051+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40717940,\n"} +{"Time":"2020-04-21T17:17:28.436054+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.436057+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am1OdFSNS8uunnrV5LWAf92l11AMaC9rplNXBUxF9OQ\",\n"} +{"Time":"2020-04-21T17:17:28.436061+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.436064+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.436067+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.436071+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.436074+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.436077+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40717940:182\",\n"} +{"Time":"2020-04-21T17:17:28.43608+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am1OdEmJHxwGcMtjCnyGpxHQ38WDcufU56yAnRHkNQM.record\",\n"} +{"Time":"2020-04-21T17:17:28.436084+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.436087+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586953203,\n"} +{"Time":"2020-04-21T17:17:28.43609+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.436093+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40717940,\n"} +{"Time":"2020-04-21T17:17:28.436096+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.4361+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am1OdP9OO0Z2jpNsPzkkdgEZHB41JXBeGUTTyTgc7Vk\",\n"} +{"Time":"2020-04-21T17:17:28.436105+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.436108+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.436112+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.436115+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.436118+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.436121+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40717950:42\",\n"} +{"Time":"2020-04-21T17:17:28.436124+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am1Ofi86K07V_xYP8IcF2tBSFwyLL8XIQhS4VSaUbkU.record\",\n"} +{"Time":"2020-04-21T17:17:28.436127+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10\",\n"} +{"Time":"2020-04-21T17:17:28.436131+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586953213,\n"} +{"Time":"2020-04-21T17:17:28.436134+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.436137+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40717950,\n"} +{"Time":"2020-04-21T17:17:28.436145+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.436148+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am1OdFSNS8uunnrV5LWAf92l11AMaC9rplNXBUxF9OQ\",\n"} +{"Time":"2020-04-21T17:17:28.436152+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1Am1OdP9OO0Z2jpNsPzkkdgEZHB41JXBeGUTTyTgc7Vk\",\n"} +{"Time":"2020-04-21T17:17:28.436155+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.436158+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.436164+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.436168+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.436172+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40718080:39\",\n"} +{"Time":"2020-04-21T17:17:28.436175+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am1PAN_BAe4CFK9NogAQimWKQiKCr4vwUo_Z9R61YfQ.record\",\n"} +{"Time":"2020-04-21T17:17:28.436178+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.436182+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586953343,\n"} +{"Time":"2020-04-21T17:17:28.436185+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.436188+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40718080,\n"} +{"Time":"2020-04-21T17:17:28.436191+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.436194+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am1PAKX4ncJHjqcUYl6pcZ1yT3zz8SppSUCLyWUFpEg\",\n"} +{"Time":"2020-04-21T17:17:28.436503+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.436508+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.436511+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.436514+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.436517+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.43652+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40718080:46\",\n"} +{"Time":"2020-04-21T17:17:28.436525+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am1PANlRaFJ9pqDzn2_GD8Ytsa5wdQlQw3wiLV1hisU.record\",\n"} +{"Time":"2020-04-21T17:17:28.436529+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.436532+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586953343,\n"} +{"Time":"2020-04-21T17:17:28.436535+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.436538+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40718080,\n"} +{"Time":"2020-04-21T17:17:28.436541+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.436545+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am1PADquJW9kdZIET5PpnfCB7-NiHFvaAxuX-5q7A-c\",\n"} +{"Time":"2020-04-21T17:17:28.436548+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.436552+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.436555+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.436559+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.436562+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.436565+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40725670:36\",\n"} +{"Time":"2020-04-21T17:17:28.436568+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am1spgL3y5jgYq0o-ZHVLEZfSWQCBMN4ecTNHn8skUA.record\",\n"} +{"Time":"2020-04-21T17:17:28.436571+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.436575+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586960933,\n"} +{"Time":"2020-04-21T17:17:28.436578+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.436581+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40725670,\n"} +{"Time":"2020-04-21T17:17:28.436584+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.43659+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am1spuW9gCcdyvMIfawzu5jsM1pBU5KEpbtdU7pfafg\",\n"} +{"Time":"2020-04-21T17:17:28.436593+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.436597+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.4366+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.436603+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.436606+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.436609+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40734910:38\",\n"} +{"Time":"2020-04-21T17:17:28.436612+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am2QvjDApAgIlTxY0v6bRk9K60hSProBuH8Nmo0dKH8.record\",\n"} +{"Time":"2020-04-21T17:17:28.436627+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000\",\n"} +{"Time":"2020-04-21T17:17:28.436631+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.436634+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586970173,\n"} +{"Time":"2020-04-21T17:17:28.436638+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.436641+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40734910,\n"} +{"Time":"2020-04-21T17:17:28.436644+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.436647+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.436651+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.436654+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.436664+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AmLynmlxa8q7rhXIhn9fT8F9jWr4-FotsNeXIJ76Aro\"\n"} +{"Time":"2020-04-21T17:17:28.436668+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.436671+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.436674+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40735740:41\",\n"} +{"Time":"2020-04-21T17:17:28.436677+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am2T_GyeMNq-TjjsThmr3b9cmt7aYlYA6niLRhBbS9k.record\",\n"} +{"Time":"2020-04-21T17:17:28.436681+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000\",\n"} +{"Time":"2020-04-21T17:17:28.436684+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.436687+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1586971003,\n"} +{"Time":"2020-04-21T17:17:28.43669+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.436694+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40735740,\n"} +{"Time":"2020-04-21T17:17:28.436697+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.4367+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.436703+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.436706+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.43671+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AmLynmlxa8q7rhXIhn9fT8F9jWr4-FotsNeXIJ76Aro\"\n"} +{"Time":"2020-04-21T17:17:28.436716+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.436719+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.436722+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40798570:12\",\n"} +{"Time":"2020-04-21T17:17:28.436725+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am6JYEeIolx4WvTd5iaOwpAH7FrqL2u60I4wMJrH5LQ.record\",\n"} +{"Time":"2020-04-21T17:17:28.436729+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100\",\n"} +{"Time":"2020-04-21T17:17:28.436732+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.436735+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587033833,\n"} +{"Time":"2020-04-21T17:17:28.436738+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.437023+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40798570,\n"} +{"Time":"2020-04-21T17:17:28.437027+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.43703+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am6JYEG9f6TW7n6NLIoyHkVvgIjkAx3aPPBCdSnoqUA\",\n"} +{"Time":"2020-04-21T17:17:28.437034+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.437037+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1Am6JYEDirviIzMATpfG8dKdC7D6FaHet89PlmCkijkw\",\n"} +{"Time":"2020-04-21T17:17:28.437041+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.437044+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.437047+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.437054+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40798630:95\",\n"} +{"Time":"2020-04-21T17:17:28.437057+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am6JphuJ9RpGPqrQJIaUrBvVgipUvrBWww6iFrdy-pk.record\",\n"} +{"Time":"2020-04-21T17:17:28.437061+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100\",\n"} +{"Time":"2020-04-21T17:17:28.437068+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.437071+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587033893,\n"} +{"Time":"2020-04-21T17:17:28.437075+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.437078+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40798630,\n"} +{"Time":"2020-04-21T17:17:28.437081+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.437084+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am6JpgX5CmQh0JmQAQWexuoW8DgJGakdoEs-YbCY7lg\",\n"} +{"Time":"2020-04-21T17:17:28.437088+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.437091+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1Am6JpqTl82SEsas-XGGGMMH5Axzv_p9xGaebv5nDaZc\",\n"} +{"Time":"2020-04-21T17:17:28.437095+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.437098+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.437101+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.437104+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40798820:243\",\n"} +{"Time":"2020-04-21T17:17:28.437107+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am6KZAaUq8ycIPsyYiIOf7KYbPRfPQQfbtxZD2Igcb4.record\",\n"} +{"Time":"2020-04-21T17:17:28.437112+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100\",\n"} +{"Time":"2020-04-21T17:17:28.437115+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.437122+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587034083,\n"} +{"Time":"2020-04-21T17:17:28.437125+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.437128+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40798820,\n"} +{"Time":"2020-04-21T17:17:28.437131+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.437135+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am6KZDvgIdXV_3r66yVR7dM9I-_hiVPS79vtyIW26Kw\",\n"} +{"Time":"2020-04-21T17:17:28.437138+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.437142+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1Am6KZNM3xrzxPijlpyXgPhFp9_sdLpV24yvpDncPbPY\",\n"} +{"Time":"2020-04-21T17:17:28.437145+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.437148+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.437151+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.437155+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40813820:22\",\n"} +{"Time":"2020-04-21T17:17:28.437158+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am7E_LOtUah_ctet_aKwl_5UnQS2fIcGdvkcVYTIvFs.record\",\n"} +{"Time":"2020-04-21T17:17:28.437161+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"40000000\",\n"} +{"Time":"2020-04-21T17:17:28.437164+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.437168+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587049083,\n"} +{"Time":"2020-04-21T17:17:28.437171+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.437174+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40813820,\n"} +{"Time":"2020-04-21T17:17:28.437177+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.437184+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am7E8tyrQEO7aPi_BCT7IF1IlBwkBtHmThmYMwTF9ec\",\n"} +{"Time":"2020-04-21T17:17:28.437187+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.437191+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1Am7E_NcTvJ1p-CyB2o25ATxWBsq8E7zo1ogFWqbwmhg\",\n"} +{"Time":"2020-04-21T17:17:28.437196+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.437203+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.437206+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.437209+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40813850:29\",\n"} +{"Time":"2020-04-21T17:17:28.437212+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am7FGnWvO9GeCju9M5lXXKlRMOtgFHTeolDbHjPdkWw.record\",\n"} +{"Time":"2020-04-21T17:17:28.437215+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"272\",\n"} +{"Time":"2020-04-21T17:17:28.437219+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.437222+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587049113,\n"} +{"Time":"2020-04-21T17:17:28.437225+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.437228+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40813850,\n"} +{"Time":"2020-04-21T17:17:28.437231+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.437235+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am7E8tyrQEO7aPi_BCT7IF1IlBwkBtHmThmYMwTF9ec\",\n"} +{"Time":"2020-04-21T17:17:28.437238+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.437241+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.437244+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Am7E_NcTvJ1p-CyB2o25ATxWBsq8E7zo1ogFWqbwmhg\"\n"} +{"Time":"2020-04-21T17:17:28.437248+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.437251+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.437587+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40814590:33\",\n"} +{"Time":"2020-04-21T17:17:28.437596+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am7H_o-OEEPDgDvGInloXj5zvYlydRcwEpU3WjOnmFg.record\",\n"} +{"Time":"2020-04-21T17:17:28.4376+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"199700000000000\",\n"} +{"Time":"2020-04-21T17:17:28.437604+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.437607+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587049853,\n"} +{"Time":"2020-04-21T17:17:28.43761+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.437614+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40814590,\n"} +{"Time":"2020-04-21T17:17:28.437617+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.43762+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Al2H5ATSCIxlS724TtsrVkfkHZOAHpm-L8PM9ZofBjQ\",\n"} +{"Time":"2020-04-21T17:17:28.437624+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.437627+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.43763+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AmLynmlxa8q7rhXIhn9fT8F9jWr4-FotsNeXIJ76Aro\"\n"} +{"Time":"2020-04-21T17:17:28.437634+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.437637+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.43764+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40816510:163\",\n"} +{"Time":"2020-04-21T17:17:28.43765+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am7PfkVAHx6A1K6yas1y8mDL-fWPSkI6N1cGbT4__yk.record\",\n"} +{"Time":"2020-04-21T17:17:28.437654+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"40000000\",\n"} +{"Time":"2020-04-21T17:17:28.437658+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.437661+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587051773,\n"} +{"Time":"2020-04-21T17:17:28.437666+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.437669+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40816510,\n"} +{"Time":"2020-04-21T17:17:28.437672+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.437676+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am7PdOfsSveYKWian27cGgNycyiRcc4i4Y4s6oO0rMw\",\n"} +{"Time":"2020-04-21T17:17:28.437679+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.437686+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1Am7PfnyHasNkkiA9rPs1qtUITMuimb2i_nPwl5FXERQ\",\n"} +{"Time":"2020-04-21T17:17:28.43769+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.437693+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.437696+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.437699+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40816540:37\",\n"} +{"Time":"2020-04-21T17:17:28.437702+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am7PnLKlABiJZUQimiLGQw5CER-7Q2Xnk6RVE34v0qg.record\",\n"} +{"Time":"2020-04-21T17:17:28.437706+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"272\",\n"} +{"Time":"2020-04-21T17:17:28.437709+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.437976+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587051803,\n"} +{"Time":"2020-04-21T17:17:28.43798+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.437983+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40816540,\n"} +{"Time":"2020-04-21T17:17:28.437986+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.43799+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am7PdOfsSveYKWian27cGgNycyiRcc4i4Y4s6oO0rMw\",\n"} +{"Time":"2020-04-21T17:17:28.437993+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.437996+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.437999+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1Am7PfnyHasNkkiA9rPs1qtUITMuimb2i_nPwl5FXERQ\"\n"} +{"Time":"2020-04-21T17:17:28.438002+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.438005+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.438008+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40817230:43\",\n"} +{"Time":"2020-04-21T17:17:28.438012+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am7STkzTfQiN9Cng8FAKwfOzfWftPctSwUBLLgL-zz8.record\",\n"} +{"Time":"2020-04-21T17:17:28.438015+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.438021+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587052493,\n"} +{"Time":"2020-04-21T17:17:28.438024+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.438028+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40817230,\n"} +{"Time":"2020-04-21T17:17:28.438031+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.438034+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am7STsUq-NwtGm7BDlCBFtd9Pm1F7fsWh1KVMAzPJj8\",\n"} +{"Time":"2020-04-21T17:17:28.438037+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.438041+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.438044+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.438047+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.43805+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.438054+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40817690:31\",\n"} +{"Time":"2020-04-21T17:17:28.438057+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am7UGgKlZaq4zoulEEBgvaLlDkH4dWBj3XS-HFrmz6c.record\",\n"} +{"Time":"2020-04-21T17:17:28.438061+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.438064+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587052953,\n"} +{"Time":"2020-04-21T17:17:28.438067+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.43807+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40817690,\n"} +{"Time":"2020-04-21T17:17:28.438073+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.438076+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am7UGgdKb2UE9Hv0vffQXRcCxLZZYf2N3Htll49QHwI\",\n"} +{"Time":"2020-04-21T17:17:28.438079+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.438295+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.438299+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.438302+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.438305+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.438308+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40817730:39\",\n"} +{"Time":"2020-04-21T17:17:28.438312+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am7UOAW5wyc1JoCVtYgHbDVPj8sWDIanrOGWDkRXCng.record\",\n"} +{"Time":"2020-04-21T17:17:28.438316+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.43832+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587052983,\n"} +{"Time":"2020-04-21T17:17:28.438323+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.438327+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40817720,\n"} +{"Time":"2020-04-21T17:17:28.438332+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.438335+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am7UOPfcUgtooRyNmmj8cbf-czOuCuoPIMUX9hLvfaM\",\n"} +{"Time":"2020-04-21T17:17:28.438339+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.438343+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.438346+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.43835+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.438354+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.438357+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40817990:143\",\n"} +{"Time":"2020-04-21T17:17:28.43836+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1Am7VRq0BWrCZOeh5f9QoF86FlKjHrbvOU_N4xeezy_A.record\",\n"} +{"Time":"2020-04-21T17:17:28.438364+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.438368+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587053253,\n"} +{"Time":"2020-04-21T17:17:28.438371+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.438375+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40817990,\n"} +{"Time":"2020-04-21T17:17:28.438378+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.438382+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1Am7VRrekMJidtIo6JwxEZyZLjgRJKr14h9gO-9Ed56Y\",\n"} +{"Time":"2020-04-21T17:17:28.438385+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.438389+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.438393+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.438396+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.4384+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.438403+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40898900:63\",\n"} +{"Time":"2020-04-21T17:17:28.438406+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnARVO0k3DKVNBd4Dl8VcQss_pdlpMjM-qmddqHaaAE.record\",\n"} +{"Time":"2020-04-21T17:17:28.438409+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.438416+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587134163,\n"} +{"Time":"2020-04-21T17:17:28.438419+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.438422+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40898900,\n"} +{"Time":"2020-04-21T17:17:28.438425+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.438428+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnARVCN0EcbPdVHX7Ihr_1eS4U0p3PKP08AvM3_p5bc\",\n"} +{"Time":"2020-04-21T17:17:28.438431+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.438435+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.438438+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.438442+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.438445+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.438448+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903460:262\",\n"} +{"Time":"2020-04-21T17:17:28.438451+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjJEchela7MILtGmosjQoaOQ088zwFlL3F23Y_WrM.record\",\n"} +{"Time":"2020-04-21T17:17:28.438455+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.438458+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138723,\n"} +{"Time":"2020-04-21T17:17:28.438461+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.438467+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903460,\n"} +{"Time":"2020-04-21T17:17:28.43847+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.438473+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjJKygFpntlWj4DeTp7Q8Pt-_jL5Hm3s_IOQZvMmA\",\n"} +{"Time":"2020-04-21T17:17:28.438477+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.43848+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.438488+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.438491+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.438494+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.438497+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903470:167\",\n"} +{"Time":"2020-04-21T17:17:28.4385+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjLtR_s4gpPImDYJAwL4lz913Q4xTpOHDue7_Tyg0.record\",\n"} +{"Time":"2020-04-21T17:17:28.438503+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.438506+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138733,\n"} +{"Time":"2020-04-21T17:17:28.438509+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.438512+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903470,\n"} +{"Time":"2020-04-21T17:17:28.438515+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.438519+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjLn4PxA7Es3U-XTEVxZa9N_gyFb4cWmTgUwiej5o\",\n"} +{"Time":"2020-04-21T17:17:28.438845+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.438862+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.438866+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.43887+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.438877+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.43888+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903470:347\",\n"} +{"Time":"2020-04-21T17:17:28.438884+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjJF0cMqfDpBfpcDpEQwDQRHIj-oJa-xpkciKJyQI.record\",\n"} +{"Time":"2020-04-21T17:17:28.438887+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.43889+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138723,\n"} +{"Time":"2020-04-21T17:17:28.438894+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.438897+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903460,\n"} +{"Time":"2020-04-21T17:17:28.4389+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.438904+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjJDDBqH8QFYLQS6JTdTDM8O4Pn8DF7_c2RxDym-A\",\n"} +{"Time":"2020-04-21T17:17:28.438907+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.438911+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.438914+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.438917+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.43892+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.438923+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903470:364\",\n"} +{"Time":"2020-04-21T17:17:28.438926+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjLg9gmIVfN_0KPbo1k6P4sJ5FjoxawpeLKlSrFfY.record\",\n"} +{"Time":"2020-04-21T17:17:28.43893+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"1000000\",\n"} +{"Time":"2020-04-21T17:17:28.438937+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.43894+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138733,\n"} +{"Time":"2020-04-21T17:17:28.438944+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.438947+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903470,\n"} +{"Time":"2020-04-21T17:17:28.43895+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.438953+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjJE__x7y_5JeSjnYnNMHJb7_bAYdYxplJ3vg6bj4\",\n"} +{"Time":"2020-04-21T17:17:28.438957+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.43896+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AnAjLqHOHsD82eWIkNVhFSL1FcmtGLAmBPsnPhjh-ng\",\n"} +{"Time":"2020-04-21T17:17:28.438963+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.438967+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.438971+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.438974+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903470:506\",\n"} +{"Time":"2020-04-21T17:17:28.438977+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjLiSYhclZIkt4yEN4m4HMFLH-3mwVVgrtuszixZI.record\",\n"} +{"Time":"2020-04-21T17:17:28.43898+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.438984+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138733,\n"} +{"Time":"2020-04-21T17:17:28.438987+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.43899+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903470,\n"} +{"Time":"2020-04-21T17:17:28.438993+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.438996+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjLufGQCx6gxYdVcdWEfvpPKgaWmWUFz4M_Lh4lbs\",\n"} +{"Time":"2020-04-21T17:17:28.438999+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.439003+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.439006+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.439009+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.439012+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.439015+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903470:540\",\n"} +{"Time":"2020-04-21T17:17:28.439018+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjLhGuH6NvkVgmY9DaJ8e4eevus6mBZoSGbilxcSE.record\",\n"} +{"Time":"2020-04-21T17:17:28.439021+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"1000000\",\n"} +{"Time":"2020-04-21T17:17:28.439025+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.439028+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138733,\n"} +{"Time":"2020-04-21T17:17:28.439031+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.439034+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903470,\n"} +{"Time":"2020-04-21T17:17:28.439037+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.43904+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjJOOP4X-TFTtylJrvHVL2uoZcVCR4pM58IWXnA4o\",\n"} +{"Time":"2020-04-21T17:17:28.439044+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.439047+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AnAjLq1hwP2Lq4g0sF_4aUFuXQhU7Y2AzQaHE2Breto\",\n"} +{"Time":"2020-04-21T17:17:28.43905+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.439053+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.439056+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.439063+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903470:559\",\n"} +{"Time":"2020-04-21T17:17:28.439066+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjJHNgABXYk2jEntsVacES-2tN811CDey0My_HUI4.record\",\n"} +{"Time":"2020-04-21T17:17:28.439069+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.439073+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138723,\n"} +{"Time":"2020-04-21T17:17:28.439076+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.439392+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903460,\n"} +{"Time":"2020-04-21T17:17:28.439396+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.439399+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjJLHRRnx923t-2aLendWSgMcxMjT7RJxHBrQ7Jow\",\n"} +{"Time":"2020-04-21T17:17:28.439402+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.439406+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.439409+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.439412+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.439415+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.439418+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903470:692\",\n"} +{"Time":"2020-04-21T17:17:28.439421+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjJH_RDvh_izMhM-jG-a7-WHZ1m0-yvOgG386T8Y0.record\",\n"} +{"Time":"2020-04-21T17:17:28.439425+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.439428+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138723,\n"} +{"Time":"2020-04-21T17:17:28.439431+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.439437+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903460,\n"} +{"Time":"2020-04-21T17:17:28.43944+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.439444+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjJLzzeSKAfzKMm74Hay5G1YgF_ed47IPQjIxCZeI\",\n"} +{"Time":"2020-04-21T17:17:28.439447+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.43945+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.439453+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.439457+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.43946+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.439463+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903480:199\",\n"} +{"Time":"2020-04-21T17:17:28.439466+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjONVj-5SrsBfGIFCcm95DTP2DObLTrWXihfYVyZo.record\",\n"} +{"Time":"2020-04-21T17:17:28.439469+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.439472+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138743,\n"} +{"Time":"2020-04-21T17:17:28.439475+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.439479+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903480,\n"} +{"Time":"2020-04-21T17:17:28.439485+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.439492+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjOMufKTaTO1mwdyeMSAnR2LAPMXN1JQUQslTZHHs\",\n"} +{"Time":"2020-04-21T17:17:28.439498+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.439501+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.439504+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.439508+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.439511+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.439513+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903480:235\",\n"} +{"Time":"2020-04-21T17:17:28.439517+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjOG3yUs8AYxgUJwobSCZUNOGrDTees09NLPrP5oE.record\",\n"} +{"Time":"2020-04-21T17:17:28.439613+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"40000000\",\n"} +{"Time":"2020-04-21T17:17:28.439618+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.439621+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138743,\n"} +{"Time":"2020-04-21T17:17:28.439624+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.439627+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903480,\n"} +{"Time":"2020-04-21T17:17:28.43963+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.439633+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjJOwmcIlGL-6fSSeuoc9TJE9tfIVgXzm-CFZDPdE\",\n"} +{"Time":"2020-04-21T17:17:28.43964+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.439644+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AnAjOG_xkmKKgVjv12WYsoAsC2a9Dbpt-b-syJi_meQ\",\n"} +{"Time":"2020-04-21T17:17:28.439647+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.439665+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.439668+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.439674+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903480:268\",\n"} +{"Time":"2020-04-21T17:17:28.439677+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjOCXHCG8ld5oTVbzeG33bWmv5gdxQjevdn_ZuNOc.record\",\n"} +{"Time":"2020-04-21T17:17:28.43968+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.439683+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138743,\n"} +{"Time":"2020-04-21T17:17:28.439686+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.439689+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903480,\n"} +{"Time":"2020-04-21T17:17:28.439692+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.439695+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjONFJ8IRwQzNA_7ykzx9EyecAGJ0Ssj4vtfin0eA\",\n"} +{"Time":"2020-04-21T17:17:28.439698+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.439702+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.439705+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.439708+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.43971+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.439713+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903480:346\",\n"} +{"Time":"2020-04-21T17:17:28.439716+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjOG9M3m1CoonwTOnmCkghq4y5lGUTopYpKFJ1Jpw.record\",\n"} +{"Time":"2020-04-21T17:17:28.43972+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.439894+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138743,\n"} +{"Time":"2020-04-21T17:17:28.439898+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.439901+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903480,\n"} +{"Time":"2020-04-21T17:17:28.439907+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.43991+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjOKBMBQ4a3HoB8jVPLbw_DUs-O6vqFVDpKwDTZV4\",\n"} +{"Time":"2020-04-21T17:17:28.439913+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.439917+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.43992+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.439923+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.439926+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.439928+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903480:411\",\n"} +{"Time":"2020-04-21T17:17:28.439932+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjOPZmpE8XNAfqinjPo-hRHyA8sPcynFPxoOxnfmo.record\",\n"} +{"Time":"2020-04-21T17:17:28.439936+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.439939+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138743,\n"} +{"Time":"2020-04-21T17:17:28.439942+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.439945+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903480,\n"} +{"Time":"2020-04-21T17:17:28.439948+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.439951+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjOBktX-GOjOmGN0m4kY3a6AZBu9YpIlgp54GtV1g\",\n"} +{"Time":"2020-04-21T17:17:28.439955+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.439958+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.439961+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.439964+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.439967+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.43997+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903480:481\",\n"} +{"Time":"2020-04-21T17:17:28.439973+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjOGSkd5MzyXH7A2NztMrss8Qfx6i-v64Dng4Xfb0.record\",\n"} +{"Time":"2020-04-21T17:17:28.439976+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.439979+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138743,\n"} +{"Time":"2020-04-21T17:17:28.439982+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.439985+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903480,\n"} +{"Time":"2020-04-21T17:17:28.439988+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.439991+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjOCOA2oGsGS9EP71Ht0JZIVlZAYoLfEDdwEoQc-0\",\n"} +{"Time":"2020-04-21T17:17:28.439995+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.439998+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.440001+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.440004+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.440007+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.44001+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903490:9\",\n"} +{"Time":"2020-04-21T17:17:28.440013+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjQtWKZmo95Mc6XsPTSiZF-iAisoQe5nGOthy3yeI.record\",\n"} +{"Time":"2020-04-21T17:17:28.440016+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.440019+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138753,\n"} +{"Time":"2020-04-21T17:17:28.440022+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.440025+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903490,\n"} +{"Time":"2020-04-21T17:17:28.440028+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.440031+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjQpbXC0QD45BUGVM1wkdikfvFEEb_OWB7CznTWsU\",\n"} +{"Time":"2020-04-21T17:17:28.440034+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.440038+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.440044+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.440047+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.44005+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.440053+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903490:113\",\n"} +{"Time":"2020-04-21T17:17:28.440056+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjQiZ76VP_Q1O4wneC9dr2aZ6aDOXXmfRR5w67OIA.record\",\n"} +{"Time":"2020-04-21T17:17:28.44006+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.440063+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.440066+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138753,\n"} +{"Time":"2020-04-21T17:17:28.440069+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.440072+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903490,\n"} +{"Time":"2020-04-21T17:17:28.440077+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.440081+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjQtgeBgSfPj-cTy8DKA4p4C3yVCTC3XawvUalRIw\",\n"} +{"Time":"2020-04-21T17:17:28.440084+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.440087+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AnAjQvwJlz1m1H3uEr_71j6UjAlJFgD9MIY3UNbmpDE\",\n"} +{"Time":"2020-04-21T17:17:28.440091+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.440094+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.440096+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.440099+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903510:145\",\n"} +{"Time":"2020-04-21T17:17:28.440375+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjVpBLwqZ7ZAGFT9xFp7z5JoOTObLsh6kgwK8r0Sw.record\",\n"} +{"Time":"2020-04-21T17:17:28.440383+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"272\",\n"} +{"Time":"2020-04-21T17:17:28.44039+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.440393+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138773,\n"} +{"Time":"2020-04-21T17:17:28.440396+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.440399+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903510,\n"} +{"Time":"2020-04-21T17:17:28.440402+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.440405+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjJOwmcIlGL-6fSSeuoc9TJE9tfIVgXzm-CFZDPdE\",\n"} +{"Time":"2020-04-21T17:17:28.440408+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.440411+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.440414+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AnAjOG_xkmKKgVjv12WYsoAsC2a9Dbpt-b-syJi_meQ\"\n"} +{"Time":"2020-04-21T17:17:28.440417+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.440422+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.440425+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903510:242\",\n"} +{"Time":"2020-04-21T17:17:28.440428+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjVgccqOQP4tbKaPZncaUqOIUUOG4FCMfcj78jT68.record\",\n"} +{"Time":"2020-04-21T17:17:28.440434+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"1000\",\n"} +{"Time":"2020-04-21T17:17:28.440437+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.44044+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138773,\n"} +{"Time":"2020-04-21T17:17:28.440443+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.440447+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903510,\n"} +{"Time":"2020-04-21T17:17:28.44045+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.440453+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjTLccZ7EHgolETgzFiUew02-3iEhw5VQXUp0p4ac\",\n"} +{"Time":"2020-04-21T17:17:28.440456+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.440459+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AnAjVmg-hvpWrReJ6euwmfKTyWkjmBJw4226k1ENAcs\",\n"} +{"Time":"2020-04-21T17:17:28.440462+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.440466+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.440473+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.440476+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903520:221\",\n"} +{"Time":"2020-04-21T17:17:28.440479+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjYD_OifSUkLE6lvLcd0sZw4L2-hs6YKfQTR6mqq0.record\",\n"} +{"Time":"2020-04-21T17:17:28.440482+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10\",\n"} +{"Time":"2020-04-21T17:17:28.440485+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.440488+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138783,\n"} +{"Time":"2020-04-21T17:17:28.440493+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.440496+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903520,\n"} +{"Time":"2020-04-21T17:17:28.440499+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.440502+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjYLd-wTZarN9S3VigGzbz4TQjaMh0QBu8Zcfymu4\",\n"} +{"Time":"2020-04-21T17:17:28.440505+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.440509+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AnAjYD2vJsCvuHogjTUdVMHd2hSFa0wP3m8uGxD94KU\",\n"} +{"Time":"2020-04-21T17:17:28.440512+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.440515+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.440518+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.440521+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903520:338\",\n"} +{"Time":"2020-04-21T17:17:28.440524+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjYK0nvB_IcaijwPnk7rs6Bwurodl8z-cbrOjF2Xo.record\",\n"} +{"Time":"2020-04-21T17:17:28.440527+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.440531+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138783,\n"} +{"Time":"2020-04-21T17:17:28.440534+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.440537+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903520,\n"} +{"Time":"2020-04-21T17:17:28.44054+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.440546+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjYEb33vnlVwKNdxL-0vu6ftEKYKsugYeucFlWnXE\",\n"} +{"Time":"2020-04-21T17:17:28.440549+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.440552+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.440555+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.440558+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.440561+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.440564+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903530:267\",\n"} +{"Time":"2020-04-21T17:17:28.440567+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjas4nRhL7drClF8pu-R_f59sZ8r-6FbRQbtK5GNo.record\",\n"} +{"Time":"2020-04-21T17:17:28.44057+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.440576+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138793,\n"} +{"Time":"2020-04-21T17:17:28.440579+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.440582+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903530,\n"} +{"Time":"2020-04-21T17:17:28.440585+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.440588+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjasZyEIouDucJH0Nt8radBLfyNhDuRyaAzH-OcRM\",\n"} +{"Time":"2020-04-21T17:17:28.440592+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.440595+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.440878+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.440881+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.440884+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.440887+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903550:45\",\n"} +{"Time":"2020-04-21T17:17:28.44089+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjfkkdoXD0xpE5OqUZxpHE_ySrVH4H9lyWC9po_oA.record\",\n"} +{"Time":"2020-04-21T17:17:28.440894+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100\",\n"} +{"Time":"2020-04-21T17:17:28.440897+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.4409+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138813,\n"} +{"Time":"2020-04-21T17:17:28.440903+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.440906+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903550,\n"} +{"Time":"2020-04-21T17:17:28.440909+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.440912+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjag9p_mombu96424z4omrXqTwTE0ck2BO5H9YMxM\",\n"} +{"Time":"2020-04-21T17:17:28.440916+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.440919+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AnAjalbcjN3ooToYdfLxeWF74F_8I0yrUJwm_pNKzrQ\",\n"} +{"Time":"2020-04-21T17:17:28.440922+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.440925+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.440928+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.440931+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903560:169\",\n"} +{"Time":"2020-04-21T17:17:28.440934+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjiL8_iG3EzOF71GvuGU-pOxNt-Fxc_ZZ0gY7_tjY.record\",\n"} +{"Time":"2020-04-21T17:17:28.440937+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000\",\n"} +{"Time":"2020-04-21T17:17:28.44094+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.440943+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138823,\n"} +{"Time":"2020-04-21T17:17:28.440946+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.440949+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903560,\n"} +{"Time":"2020-04-21T17:17:28.440952+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"release\",\n"} +{"Time":"2020-04-21T17:17:28.440955+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjiKTxo3DzBfql0Y-Cj12JBvMjKPg6My7VBIvECk4\",\n"} +{"Time":"2020-04-21T17:17:28.440959+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.440964+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.440968+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"insolar:1AnAjiNNv1jan0YJSFzpvjWKY6c0NXieGYBltg8-qxmQ\"\n"} +{"Time":"2020-04-21T17:17:28.440971+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.440974+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.440977+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903560:238\",\n"} +{"Time":"2020-04-21T17:17:28.44098+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjiH2ek8xfvYt_p0ryUBVfpvh7699jePMEH-7pTWU.record\",\n"} +{"Time":"2020-04-21T17:17:28.440983+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"10\",\n"} +{"Time":"2020-04-21T17:17:28.440986+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.440989+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138823,\n"} +{"Time":"2020-04-21T17:17:28.440992+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.440995+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903560,\n"} +{"Time":"2020-04-21T17:17:28.440998+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.441004+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjiKTxo3DzBfql0Y-Cj12JBvMjKPg6My7VBIvECk4\",\n"} +{"Time":"2020-04-21T17:17:28.441008+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.441011+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AnAjiNNv1jan0YJSFzpvjWKY6c0NXieGYBltg8-qxmQ\",\n"} +{"Time":"2020-04-21T17:17:28.441014+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.441017+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.44102+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.441026+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903570:163\",\n"} +{"Time":"2020-04-21T17:17:28.441029+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjkpxVu2_V-fOgZnqDAIY2disHt934Dt6Xys0J5TM.record\",\n"} +{"Time":"2020-04-21T17:17:28.441035+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.441039+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138833,\n"} +{"Time":"2020-04-21T17:17:28.441042+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.441045+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903570,\n"} +{"Time":"2020-04-21T17:17:28.441048+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.441053+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjkmt_-u1vjWSrM1uvvYfe9jJEVHRjkORCy8C_Y6A\",\n"} +{"Time":"2020-04-21T17:17:28.441057+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.44106+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.441063+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.441066+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.441069+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.441072+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903570:173\",\n"} +{"Time":"2020-04-21T17:17:28.441075+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjki9VdBq6gGK22XDkfwLiA_JbJQGSd2PEHhzaMMo.record\",\n"} +{"Time":"2020-04-21T17:17:28.441078+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.441081+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138833,\n"} +{"Time":"2020-04-21T17:17:28.441084+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.441087+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903570,\n"} +{"Time":"2020-04-21T17:17:28.44109+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.441389+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjkqnPQwi4LP-9TEhAbeBCKRvMgg32U0TOwAHKaqg\",\n"} +{"Time":"2020-04-21T17:17:28.441393+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.441396+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.441399+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.441402+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.441406+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.441409+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903570:311\",\n"} +{"Time":"2020-04-21T17:17:28.441412+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjkq1r-s_Z7x1F5NpKtrEa649pQmNncT0SNI3ZaDA.record\",\n"} +{"Time":"2020-04-21T17:17:28.441415+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.441418+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138833,\n"} +{"Time":"2020-04-21T17:17:28.441421+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.441424+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903570,\n"} +{"Time":"2020-04-21T17:17:28.441427+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.44143+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjkqdRXGgv7Mxn6ar3yWObVlUUbpNy8dA8Rg7mGGc\",\n"} +{"Time":"2020-04-21T17:17:28.441434+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.441437+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.44144+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.441443+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.441446+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.441448+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903570:332\",\n"} +{"Time":"2020-04-21T17:17:28.441452+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjkgLIoH0ePOPMPLofYi3Ukc8P3pb8IaLoZsuyii0.record\",\n"} +{"Time":"2020-04-21T17:17:28.441455+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.441458+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138833,\n"} +{"Time":"2020-04-21T17:17:28.441464+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.441467+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903570,\n"} +{"Time":"2020-04-21T17:17:28.44147+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.441473+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjkpJovwhJ3ReiqH_oueJBc19eLsCb_gx16HbAiFo\",\n"} +{"Time":"2020-04-21T17:17:28.441476+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.441479+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.441482+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.441486+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.441672+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.441675+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903580:98\",\n"} +{"Time":"2020-04-21T17:17:28.441678+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjnLlTQzZ_M0k2UOTWzabtPwuXwyJfnGoa3hlN4lU.record\",\n"} +{"Time":"2020-04-21T17:17:28.441681+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100\",\n"} +{"Time":"2020-04-21T17:17:28.441685+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fee\": \"0\",\n"} +{"Time":"2020-04-21T17:17:28.441688+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138843,\n"} +{"Time":"2020-04-21T17:17:28.441691+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"received\",\n"} +{"Time":"2020-04-21T17:17:28.441694+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903580,\n"} +{"Time":"2020-04-21T17:17:28.441697+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"migration\",\n"} +{"Time":"2020-04-21T17:17:28.4417+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjnILrG699qqRxn1TlLJghaKQzohwShoJg8VgQy6g\",\n"} +{"Time":"2020-04-21T17:17:28.441703+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAS2JLnvh2bkLUUlUijqcp7--k8_GIz9qLKxZXLE\",\n"} +{"Time":"2020-04-21T17:17:28.441706+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"insolar:1AnAjnJ6uBROFesh7cEhb3ogZ_-qInfK2wHx75wc6xAg\",\n"} +{"Time":"2020-04-21T17:17:28.441709+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.441716+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.441719+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.441722+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903580:238\",\n"} +{"Time":"2020-04-21T17:17:28.441728+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjnKMDJXkXGWvYIb03MdiTZum4I6kbMceLWNmvleo.record\",\n"} +{"Time":"2020-04-21T17:17:28.441731+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.441734+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138843,\n"} +{"Time":"2020-04-21T17:17:28.441737+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.44174+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903580,\n"} +{"Time":"2020-04-21T17:17:28.441743+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.441746+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjnFQik-Zyl_YdCgRMuf9pRg9HAN8XEax4dFMWu3M\",\n"} +{"Time":"2020-04-21T17:17:28.44175+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.441753+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.441756+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.441759+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.441762+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.441765+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"index\": \"40903580:274\",\n"} +{"Time":"2020-04-21T17:17:28.441768+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"txID\": \"insolar:1AnAjnN7hjta4AvbkjTHTyHXNn2ac4GeJporlWDn_-bI.record\",\n"} +{"Time":"2020-04-21T17:17:28.441771+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"amount\": \"100000000000000\",\n"} +{"Time":"2020-04-21T17:17:28.441774+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"timestamp\": 1587138843,\n"} +{"Time":"2020-04-21T17:17:28.441777+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"status\": \"failed\",\n"} +{"Time":"2020-04-21T17:17:28.441782+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"pulseNumber\": 40903580,\n"} +{"Time":"2020-04-21T17:17:28.441785+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"type\": \"transfer\",\n"} +{"Time":"2020-04-21T17:17:28.441788+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toMemberReference\": \"insolar:1AnAjnAIqcWkJlgvF-Miimln2IwaFLdjPbwQhq74D0qY\",\n"} +{"Time":"2020-04-21T17:17:28.441791+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromMemberReference\": \"insolar:1AAEAAWeNhA_NwKaH6E36IJ-2PLvXnJRxiTTNWq1giOg\",\n"} +{"Time":"2020-04-21T17:17:28.441794+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"toDepositReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.441797+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" \"fromDepositReference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.4418+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.441803+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" ]\n"} +{"Time":"2020-04-21T17:17:28.441806+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.441809+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/transactions/closed?index=40903580%3A274\u0026limit=200\u0026order=chronological\n"} +{"Time":"2020-04-21T17:17:28.441813+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:36: Query params: map[index:[40903580:274] limit:[200] order:[chronological]]\n"} +{"Time":"2020-04-21T17:17:28.441816+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.441822+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.441825+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.441828+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:54: http status: 204 No Content\n"} +{"Time":"2020-04-21T17:17:28.441831+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.441834+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Output":" null\n"} +{"Time":"2020-04-21T17:17:28.441838+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetClosedTransactionsSortReverse","Elapsed":0.45} +{"Time":"2020-04-21T17:17:28.441843+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer"} +{"Time":"2020-04-21T17:17:28.441846+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":"=== RUN TestMemberBigAmountTransfer\n"} +{"Time":"2020-04-21T17:17:28.486461+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetTransactionsByPulseNumberRange_MemberFilter_FindTransfer","Elapsed":0.46} +{"Time":"2020-04-21T17:17:28.486503+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":"--- PASS: TestGetPulseRange_FromTimestampIsMinus (0.47s)\n"} +{"Time":"2020-04-21T17:17:28.486518+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" pulse_range_test.go:50: C3985\tУспешное получение диапазона финализированных пульсов, если передан fromTimestamp=-1\n"} +{"Time":"2020-04-21T17:17:28.486555+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.486565+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/pulse/range?fromTimestamp=-1\u0026limit=10\u0026toTimestamp=1587478648\n"} +{"Time":"2020-04-21T17:17:28.486575+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" apilogger.go:36: Query params: map[fromTimestamp:[-1] limit:[10] toTimestamp:[1587478648]]\n"} +{"Time":"2020-04-21T17:17:28.486584+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.486592+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.486601+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.486608+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.486616+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.486625+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" [\n"} +{"Time":"2020-04-21T17:17:28.486633+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" 65537,\n"} +{"Time":"2020-04-21T17:17:28.486641+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" 34757415,\n"} +{"Time":"2020-04-21T17:17:28.486649+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" 34757425,\n"} +{"Time":"2020-04-21T17:17:28.486656+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" 34757435,\n"} +{"Time":"2020-04-21T17:17:28.486664+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" 34757445,\n"} +{"Time":"2020-04-21T17:17:28.486671+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" 34757455,\n"} +{"Time":"2020-04-21T17:17:28.486679+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" 34757465,\n"} +{"Time":"2020-04-21T17:17:28.486686+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" 34757475,\n"} +{"Time":"2020-04-21T17:17:28.486694+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" 34757485,\n"} +{"Time":"2020-04-21T17:17:28.486701+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" 34757495\n"} +{"Time":"2020-04-21T17:17:28.486709+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Output":" ]\n"} +{"Time":"2020-04-21T17:17:28.486854+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsMinus","Elapsed":0.47} +{"Time":"2020-04-21T17:17:28.486882+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":"--- PASS: TestGetPulseRange_FromTimestampIsZero (0.47s)\n"} +{"Time":"2020-04-21T17:17:28.486896+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" pulse_range_test.go:42: C3984\tУспешное получение диапазона финализированных пульсов, если передан fromTimestamp=0\n"} +{"Time":"2020-04-21T17:17:28.486907+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.486915+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/pulse/range?fromTimestamp=0\u0026limit=10\u0026toTimestamp=1587478648\n"} +{"Time":"2020-04-21T17:17:28.486925+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" apilogger.go:36: Query params: map[fromTimestamp:[0] limit:[10] toTimestamp:[1587478648]]\n"} +{"Time":"2020-04-21T17:17:28.486934+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.486942+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.48695+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.486958+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.486965+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.486973+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" [\n"} +{"Time":"2020-04-21T17:17:28.486981+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" 65537,\n"} +{"Time":"2020-04-21T17:17:28.486988+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" 34757415,\n"} +{"Time":"2020-04-21T17:17:28.486996+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" 34757425,\n"} +{"Time":"2020-04-21T17:17:28.487003+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" 34757435,\n"} +{"Time":"2020-04-21T17:17:28.48701+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" 34757445,\n"} +{"Time":"2020-04-21T17:17:28.487018+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" 34757455,\n"} +{"Time":"2020-04-21T17:17:28.487026+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" 34757465,\n"} +{"Time":"2020-04-21T17:17:28.487033+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" 34757475,\n"} +{"Time":"2020-04-21T17:17:28.487057+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" 34757485,\n"} +{"Time":"2020-04-21T17:17:28.487066+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" 34757495\n"} +{"Time":"2020-04-21T17:17:28.487086+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Output":" ]\n"} +{"Time":"2020-04-21T17:17:28.500182+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_FromTimestampIsZero","Elapsed":0.47} +{"Time":"2020-04-21T17:17:28.500221+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":"--- PASS: TestGetPulseRange (0.45s)\n"} +{"Time":"2020-04-21T17:17:28.500234+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" pulse_range_test.go:31: C3977\tУспешное получение диапазона финализированных пульсов\n"} +{"Time":"2020-04-21T17:17:28.500245+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.500253+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/pulse/range?fromTimestamp=1587471448\u0026limit=100\u0026toTimestamp=1587478648\n"} +{"Time":"2020-04-21T17:17:28.500263+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" apilogger.go:36: Query params: map[fromTimestamp:[1587471448] limit:[100] toTimestamp:[1587478648]]\n"} +{"Time":"2020-04-21T17:17:28.500272+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.500281+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.500289+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.500296+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.500304+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.500312+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" [\n"} +{"Time":"2020-04-21T17:17:28.50032+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236190,\n"} +{"Time":"2020-04-21T17:17:28.500327+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236200,\n"} +{"Time":"2020-04-21T17:17:28.500335+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236210,\n"} +{"Time":"2020-04-21T17:17:28.500343+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236220,\n"} +{"Time":"2020-04-21T17:17:28.500351+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236230,\n"} +{"Time":"2020-04-21T17:17:28.500358+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236240,\n"} +{"Time":"2020-04-21T17:17:28.500365+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236250,\n"} +{"Time":"2020-04-21T17:17:28.500372+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236260,\n"} +{"Time":"2020-04-21T17:17:28.500379+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236270,\n"} +{"Time":"2020-04-21T17:17:28.500386+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236280,\n"} +{"Time":"2020-04-21T17:17:28.500394+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236290,\n"} +{"Time":"2020-04-21T17:17:28.500401+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236300,\n"} +{"Time":"2020-04-21T17:17:28.500409+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236310,\n"} +{"Time":"2020-04-21T17:17:28.500416+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236320,\n"} +{"Time":"2020-04-21T17:17:28.500423+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236330,\n"} +{"Time":"2020-04-21T17:17:28.500431+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236340,\n"} +{"Time":"2020-04-21T17:17:28.500438+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236350,\n"} +{"Time":"2020-04-21T17:17:28.500446+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236360,\n"} +{"Time":"2020-04-21T17:17:28.500453+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236370,\n"} +{"Time":"2020-04-21T17:17:28.50046+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236380,\n"} +{"Time":"2020-04-21T17:17:28.500467+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236390,\n"} +{"Time":"2020-04-21T17:17:28.500474+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236400,\n"} +{"Time":"2020-04-21T17:17:28.500482+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236410,\n"} +{"Time":"2020-04-21T17:17:28.500489+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236420,\n"} +{"Time":"2020-04-21T17:17:28.500496+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236430,\n"} +{"Time":"2020-04-21T17:17:28.500503+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236440,\n"} +{"Time":"2020-04-21T17:17:28.50051+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236450,\n"} +{"Time":"2020-04-21T17:17:28.500518+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236460,\n"} +{"Time":"2020-04-21T17:17:28.500525+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236470,\n"} +{"Time":"2020-04-21T17:17:28.500532+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236480,\n"} +{"Time":"2020-04-21T17:17:28.500565+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236490,\n"} +{"Time":"2020-04-21T17:17:28.500573+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236500,\n"} +{"Time":"2020-04-21T17:17:28.50058+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236510,\n"} +{"Time":"2020-04-21T17:17:28.500595+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236520,\n"} +{"Time":"2020-04-21T17:17:28.500602+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236530,\n"} +{"Time":"2020-04-21T17:17:28.500609+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236540,\n"} +{"Time":"2020-04-21T17:17:28.500617+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236550,\n"} +{"Time":"2020-04-21T17:17:28.500631+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236560,\n"} +{"Time":"2020-04-21T17:17:28.500639+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236570,\n"} +{"Time":"2020-04-21T17:17:28.500646+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236580,\n"} +{"Time":"2020-04-21T17:17:28.500653+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236590,\n"} +{"Time":"2020-04-21T17:17:28.50066+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236600,\n"} +{"Time":"2020-04-21T17:17:28.500667+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236610,\n"} +{"Time":"2020-04-21T17:17:28.500674+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236620,\n"} +{"Time":"2020-04-21T17:17:28.500681+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236630,\n"} +{"Time":"2020-04-21T17:17:28.500688+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236640,\n"} +{"Time":"2020-04-21T17:17:28.500695+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236650,\n"} +{"Time":"2020-04-21T17:17:28.500702+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236660,\n"} +{"Time":"2020-04-21T17:17:28.500709+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236670,\n"} +{"Time":"2020-04-21T17:17:28.50073+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236680,\n"} +{"Time":"2020-04-21T17:17:28.50074+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236690,\n"} +{"Time":"2020-04-21T17:17:28.500747+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236700,\n"} +{"Time":"2020-04-21T17:17:28.500754+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236710,\n"} +{"Time":"2020-04-21T17:17:28.500761+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236720,\n"} +{"Time":"2020-04-21T17:17:28.500769+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236730,\n"} +{"Time":"2020-04-21T17:17:28.500776+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236740,\n"} +{"Time":"2020-04-21T17:17:28.500783+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236750,\n"} +{"Time":"2020-04-21T17:17:28.50079+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236760,\n"} +{"Time":"2020-04-21T17:17:28.500798+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236770,\n"} +{"Time":"2020-04-21T17:17:28.500805+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236780,\n"} +{"Time":"2020-04-21T17:17:28.500812+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236790,\n"} +{"Time":"2020-04-21T17:17:28.500819+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236800,\n"} +{"Time":"2020-04-21T17:17:28.500826+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236810,\n"} +{"Time":"2020-04-21T17:17:28.500833+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236820,\n"} +{"Time":"2020-04-21T17:17:28.50084+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236830,\n"} +{"Time":"2020-04-21T17:17:28.500847+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236840,\n"} +{"Time":"2020-04-21T17:17:28.500854+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236850,\n"} +{"Time":"2020-04-21T17:17:28.500861+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236860,\n"} +{"Time":"2020-04-21T17:17:28.500868+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236870,\n"} +{"Time":"2020-04-21T17:17:28.500883+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236880,\n"} +{"Time":"2020-04-21T17:17:28.50089+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236890,\n"} +{"Time":"2020-04-21T17:17:28.500898+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236900,\n"} +{"Time":"2020-04-21T17:17:28.500905+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236910,\n"} +{"Time":"2020-04-21T17:17:28.500912+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236920,\n"} +{"Time":"2020-04-21T17:17:28.500919+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236930,\n"} +{"Time":"2020-04-21T17:17:28.500926+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236940,\n"} +{"Time":"2020-04-21T17:17:28.500933+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236950,\n"} +{"Time":"2020-04-21T17:17:28.500941+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236960,\n"} +{"Time":"2020-04-21T17:17:28.500948+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236970,\n"} +{"Time":"2020-04-21T17:17:28.500955+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236980,\n"} +{"Time":"2020-04-21T17:17:28.500962+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41236990,\n"} +{"Time":"2020-04-21T17:17:28.500969+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41237000,\n"} +{"Time":"2020-04-21T17:17:28.500976+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41237010,\n"} +{"Time":"2020-04-21T17:17:28.500983+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41237020,\n"} +{"Time":"2020-04-21T17:17:28.50099+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41237030,\n"} +{"Time":"2020-04-21T17:17:28.500997+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41237040,\n"} +{"Time":"2020-04-21T17:17:28.501005+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41237050,\n"} +{"Time":"2020-04-21T17:17:28.501012+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41237060,\n"} +{"Time":"2020-04-21T17:17:28.501019+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41237070,\n"} +{"Time":"2020-04-21T17:17:28.501026+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41237080,\n"} +{"Time":"2020-04-21T17:17:28.501033+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41237090,\n"} +{"Time":"2020-04-21T17:17:28.50104+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41237100,\n"} +{"Time":"2020-04-21T17:17:28.501047+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41237110,\n"} +{"Time":"2020-04-21T17:17:28.501054+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41237120,\n"} +{"Time":"2020-04-21T17:17:28.501061+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41237130,\n"} +{"Time":"2020-04-21T17:17:28.501068+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41237140,\n"} +{"Time":"2020-04-21T17:17:28.501076+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41237150,\n"} +{"Time":"2020-04-21T17:17:28.501083+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41237160,\n"} +{"Time":"2020-04-21T17:17:28.50109+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41237170,\n"} +{"Time":"2020-04-21T17:17:28.501097+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" 41237180\n"} +{"Time":"2020-04-21T17:17:28.501105+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Output":" ]\n"} +{"Time":"2020-04-21T17:17:28.576948+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange","Elapsed":0.45} +{"Time":"2020-04-21T17:17:28.576989+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_ToTimestampIsZero","Output":"--- PASS: TestGetPulseRange_ToTimestampIsZero (0.52s)\n"} +{"Time":"2020-04-21T17:17:28.577003+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_ToTimestampIsZero","Output":" pulse_range_test.go:58: C3986\tУспешное получение диапазона финализированных пульсов, если передан toTimestamp=0\n"} +{"Time":"2020-04-21T17:17:28.577015+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_ToTimestampIsZero","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.577023+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_ToTimestampIsZero","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/pulse/range?fromTimestamp=-1\u0026limit=10\u0026toTimestamp=0\n"} +{"Time":"2020-04-21T17:17:28.577033+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_ToTimestampIsZero","Output":" apilogger.go:36: Query params: map[fromTimestamp:[-1] limit:[10] toTimestamp:[0]]\n"} +{"Time":"2020-04-21T17:17:28.577042+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_ToTimestampIsZero","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.57705+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_ToTimestampIsZero","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.57707+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_ToTimestampIsZero","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.57708+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_ToTimestampIsZero","Output":" apilogger.go:54: http status: 204 No Content\n"} +{"Time":"2020-04-21T17:17:28.577089+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_ToTimestampIsZero","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.577097+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_ToTimestampIsZero","Output":" null\n"} +{"Time":"2020-04-21T17:17:28.585712+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":"--- FAIL: TestMemberBigAmountTransfer (0.16s)\n"} +{"Time":"2020-04-21T17:17:28.585776+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" closed_transactions_test.go:124: C914\tПолучение списка закрытых транзакций, если создана транзакция с amount = len(80), наличие транзакции в списке, статус failed\n"} +{"Time":"2020-04-21T17:17:28.585812+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:28.585842+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" insolar_api_wrapper.go:126: Received seed: r4dGq2ExNBbEMZw80vww6eNqTqAg7yEhnjNAoN3xMas=\n"} +{"Time":"2020-04-21T17:17:28.585852+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.585861+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:28.58587+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:28.585878+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.585885+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.585893+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.585901+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:28.585909+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.585916+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.585925+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"id\": 4,\n"} +{"Time":"2020-04-21T17:17:28.585932+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:28.585975+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.586001+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.586011+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.586018+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.586026+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.586034+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.586042+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"id\": 4,\n"} +{"Time":"2020-04-21T17:17:28.58605+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:28.586058+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"seed\": \"r4dGq2ExNBbEMZw80vww6eNqTqAg7yEhnjNAoN3xMas=\"\n"} +{"Time":"2020-04-21T17:17:28.586067+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.586089+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:28.586107+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:28.586115+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.586124+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:28.586179+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.586205+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:28.586216+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.586224+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.586232+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.58624+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:28.586247+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.586255+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:28.586264+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:28.586271+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.586279+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.586286+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:41: -H Digest: [SHA-256=iXVnHHJeeFMA3Xs1Xc/pp4G609Sou8wysQDj3EA39yw=]\n"} +{"Time":"2020-04-21T17:17:28.586294+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEYCIQDTiqh/eB5GiqM+XdAOKGibrRqOujUTy3M2dhxC4qcToAIhAJge8Ym0pgjsvkQgU1jrDyGyWJJLeOxF0sNzshnUgCMg]\n"} +{"Time":"2020-04-21T17:17:28.586304+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.586311+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:28.586318+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.586326+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.586334+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"id\": 5,\n"} +{"Time":"2020-04-21T17:17:28.586342+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:28.586367+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:28.586375+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"seed\": \"r4dGq2ExNBbEMZw80vww6eNqTqAg7yEhnjNAoN3xMas=\",\n"} +{"Time":"2020-04-21T17:17:28.586383+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:17:28.586391+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE+J+3f8B4ULyj8Utla3PjWgqNSAap\\nO2tKzBtSEyKgZKvhW6XWUnJVpWZAtYhz5ejBYbShvkGGodyTgAdoKrspwQ==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:28.586407+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.586422+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.586434+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.586442+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.586449+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.586456+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.586463+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.586471+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"id\": 5,\n"} +{"Time":"2020-04-21T17:17:28.586478+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:28.586486+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:28.586494+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.586502+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.586509+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.586517+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.586524+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.586531+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:28.586539+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:28.586546+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.586554+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"traceID\": \"9c43035f7c7335f57d25a9b936aeb88a\",\n"} +{"Time":"2020-04-21T17:17:28.586562+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:28.58657+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:28.586578+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" ]\n"} +{"Time":"2020-04-21T17:17:28.586585+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.586592+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:28.586607+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:28.586619+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.586626+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.586633+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:28.586641+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:28.586648+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \t \t\t\t\tinsolar_api_wrapper.go:159\n"} +{"Time":"2020-04-21T17:17:28.586656+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \t \t\t\t\tclosed_transactions_test.go:125\n"} +{"Time":"2020-04-21T17:17:28.586664+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:28.58668+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \tTest: \tTestMemberBigAmountTransfer\n"} +{"Time":"2020-04-21T17:17:28.586688+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:28.586712+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBigAmountTransfer","Elapsed":0.16} +{"Time":"2020-04-21T17:17:28.586723+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestFee"} +{"Time":"2020-04-21T17:17:28.586748+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestFee","Output":"=== RUN TestFee\n"} +{"Time":"2020-04-21T17:17:28.638889+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_ToTimestampIsZero","Elapsed":0.52} +{"Time":"2020-04-21T17:17:28.638913+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":"--- PASS: TestGetPulseRange_CheckPagination (0.63s)\n"} +{"Time":"2020-04-21T17:17:28.638928+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" pulse_range_test.go:110: C4007\tУспешное получение диапазона финализированных пульсов, проверка пагинации\n"} +{"Time":"2020-04-21T17:17:28.638936+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.638942+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/pulse/range?fromTimestamp=0\u0026limit=20\u0026toTimestamp=1587478648\n"} +{"Time":"2020-04-21T17:17:28.638948+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" apilogger.go:36: Query params: map[fromTimestamp:[0] limit:[20] toTimestamp:[1587478648]]\n"} +{"Time":"2020-04-21T17:17:28.638953+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.638959+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.638964+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.638969+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.638974+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.638979+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" [\n"} +{"Time":"2020-04-21T17:17:28.638984+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 65537,\n"} +{"Time":"2020-04-21T17:17:28.638989+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757415,\n"} +{"Time":"2020-04-21T17:17:28.639007+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757425,\n"} +{"Time":"2020-04-21T17:17:28.639013+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757435,\n"} +{"Time":"2020-04-21T17:17:28.639017+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757445,\n"} +{"Time":"2020-04-21T17:17:28.639022+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757455,\n"} +{"Time":"2020-04-21T17:17:28.639026+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757465,\n"} +{"Time":"2020-04-21T17:17:28.639032+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757475,\n"} +{"Time":"2020-04-21T17:17:28.639036+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757485,\n"} +{"Time":"2020-04-21T17:17:28.63904+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757495,\n"} +{"Time":"2020-04-21T17:17:28.639045+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757505,\n"} +{"Time":"2020-04-21T17:17:28.639049+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757515,\n"} +{"Time":"2020-04-21T17:17:28.639054+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757525,\n"} +{"Time":"2020-04-21T17:17:28.639059+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757535,\n"} +{"Time":"2020-04-21T17:17:28.639063+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757545,\n"} +{"Time":"2020-04-21T17:17:28.639068+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757555,\n"} +{"Time":"2020-04-21T17:17:28.639072+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757565,\n"} +{"Time":"2020-04-21T17:17:28.639077+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757575,\n"} +{"Time":"2020-04-21T17:17:28.639084+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757585,\n"} +{"Time":"2020-04-21T17:17:28.639095+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757595\n"} +{"Time":"2020-04-21T17:17:28.6391+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" ]\n"} +{"Time":"2020-04-21T17:17:28.639105+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.639109+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/pulse/range?fromTimestamp=0\u0026limit=10\u0026pulseNumber=34757495\u0026toTimestamp=1587478648\n"} +{"Time":"2020-04-21T17:17:28.639115+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" apilogger.go:36: Query params: map[fromTimestamp:[0] limit:[10] pulseNumber:[34757495] toTimestamp:[1587478648]]\n"} +{"Time":"2020-04-21T17:17:28.63912+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.639125+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.639129+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.639138+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.639143+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.639148+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" [\n"} +{"Time":"2020-04-21T17:17:28.639152+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757505,\n"} +{"Time":"2020-04-21T17:17:28.639157+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757515,\n"} +{"Time":"2020-04-21T17:17:28.639161+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757525,\n"} +{"Time":"2020-04-21T17:17:28.639166+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757535,\n"} +{"Time":"2020-04-21T17:17:28.63917+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757545,\n"} +{"Time":"2020-04-21T17:17:28.639175+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757555,\n"} +{"Time":"2020-04-21T17:17:28.639179+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757565,\n"} +{"Time":"2020-04-21T17:17:28.639189+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757575,\n"} +{"Time":"2020-04-21T17:17:28.639194+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757585,\n"} +{"Time":"2020-04-21T17:17:28.639199+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" 34757595\n"} +{"Time":"2020-04-21T17:17:28.639203+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Output":" ]\n"} +{"Time":"2020-04-21T17:17:28.639211+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Test":"TestGetPulseRange_CheckPagination","Elapsed":0.63} +{"Time":"2020-04-21T17:17:28.639217+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Output":"FAIL\n"} +{"Time":"2020-04-21T17:17:28.640974+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Output":"FAIL\tgithub.com/insolar/go-autotests/apitests/tests/observer/observerpulse\t1.848s\n"} +{"Time":"2020-04-21T17:17:28.640987+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Elapsed":1.8479999999999999} +{"Time":"2020-04-21T17:17:28.657473+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestFee","Output":"--- PASS: TestFee (0.07s)\n"} +{"Time":"2020-04-21T17:17:28.657509+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestFee","Output":" fee_test.go:32: C865\tПроверка комиссии в обзервере = значение в коде платформы\n"} +{"Time":"2020-04-21T17:17:28.657518+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestFee","Output":" observerapi_wrapper.go:113: amount = 1\n"} +{"Time":"2020-04-21T17:17:28.657524+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestFee","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.657529+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestFee","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/fee/1\n"} +{"Time":"2020-04-21T17:17:28.657534+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestFee","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:28.657539+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestFee","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.657544+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestFee","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.657549+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestFee","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.657553+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestFee","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.657558+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestFee","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.657563+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestFee","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.657569+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestFee","Output":" \"fee\": \"100000000\",\n"} +{"Time":"2020-04-21T17:17:28.657584+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestFee","Output":" \"error\": null\n"} +{"Time":"2020-04-21T17:17:28.65759+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestFee","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.657596+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestFee","Elapsed":0.07} +{"Time":"2020-04-21T17:17:28.657605+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats"} +{"Time":"2020-04-21T17:17:28.65761+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":"=== RUN TestObserverGetMarketStats\n"} +{"Time":"2020-04-21T17:17:28.724814+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":"--- PASS: TestObserverGetMarketStats (0.07s)\n"} +{"Time":"2020-04-21T17:17:28.724857+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" market_stats_test.go:28: C901 Успешное получение статистики рынка\n"} +{"Time":"2020-04-21T17:17:28.72487+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.724911+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/stats/market\n"} +{"Time":"2020-04-21T17:17:28.724945+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:28.72496+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.724974+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.724985+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.724997+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.725007+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.725015+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725023+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"0.992905782705\",\n"} +{"Time":"2020-04-21T17:17:28.725058+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"dailyChange\": \"0.482308\",\n"} +{"Time":"2020-04-21T17:17:28.725073+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"volume\": \"1.01732099515393e+06\",\n"} +{"Time":"2020-04-21T17:17:28.725092+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"rank\": \"90\",\n"} +{"Time":"2020-04-21T17:17:28.725103+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"marketCap\": \"5.971268585063927e+07\",\n"} +{"Time":"2020-04-21T17:17:28.725112+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"circulatingSupply\": \"6.01393273065269e+07\",\n"} +{"Time":"2020-04-21T17:17:28.72512+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"priceHistory\": [\n"} +{"Time":"2020-04-21T17:17:28.725129+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725137+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1585814400,\n"} +{"Time":"2020-04-21T17:17:28.725146+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"1.0105328501471875\"\n"} +{"Time":"2020-04-21T17:17:28.725154+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725161+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725169+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1585843200,\n"} +{"Time":"2020-04-21T17:17:28.725177+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"1.0031652191751874\"\n"} +{"Time":"2020-04-21T17:17:28.725184+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725192+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.7252+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1585872000,\n"} +{"Time":"2020-04-21T17:17:28.725208+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"1.001311422493927\"\n"} +{"Time":"2020-04-21T17:17:28.725215+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725244+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725249+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1585900800,\n"} +{"Time":"2020-04-21T17:17:28.725264+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"1.001140194506698\"\n"} +{"Time":"2020-04-21T17:17:28.725273+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725282+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725288+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1585929600,\n"} +{"Time":"2020-04-21T17:17:28.725294+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"0.9761243742259271\"\n"} +{"Time":"2020-04-21T17:17:28.725299+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725304+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725309+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1585958400,\n"} +{"Time":"2020-04-21T17:17:28.725314+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"0.9733511404801771\"\n"} +{"Time":"2020-04-21T17:17:28.725319+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725324+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725335+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1585987200,\n"} +{"Time":"2020-04-21T17:17:28.725341+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"0.9788524124743085\"\n"} +{"Time":"2020-04-21T17:17:28.725346+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725351+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725356+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1586016000,\n"} +{"Time":"2020-04-21T17:17:28.725365+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"0.9961940904198229\"\n"} +{"Time":"2020-04-21T17:17:28.72537+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725375+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.72538+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1586044800,\n"} +{"Time":"2020-04-21T17:17:28.725387+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"0.9967318336040417\"\n"} +{"Time":"2020-04-21T17:17:28.725395+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725403+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725409+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1586073600,\n"} +{"Time":"2020-04-21T17:17:28.725414+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"0.9883928539495626\"\n"} +{"Time":"2020-04-21T17:17:28.725422+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725427+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725432+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1586102400,\n"} +{"Time":"2020-04-21T17:17:28.725438+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"0.9890673063080416\"\n"} +{"Time":"2020-04-21T17:17:28.725444+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725449+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725454+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1586131200,\n"} +{"Time":"2020-04-21T17:17:28.725466+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"0.991480193845625\"\n"} +{"Time":"2020-04-21T17:17:28.725472+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725483+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725488+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1586160000,\n"} +{"Time":"2020-04-21T17:17:28.725494+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"0.9987484944581354\"\n"} +{"Time":"2020-04-21T17:17:28.725499+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725504+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725509+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1586188800,\n"} +{"Time":"2020-04-21T17:17:28.725514+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"0.9921981109827187\"\n"} +{"Time":"2020-04-21T17:17:28.72552+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725525+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725531+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1586217600,\n"} +{"Time":"2020-04-21T17:17:28.725536+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"0.9905213080826875\"\n"} +{"Time":"2020-04-21T17:17:28.725546+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725555+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725561+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1586246400,\n"} +{"Time":"2020-04-21T17:17:28.725567+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"0.994225549338375\"\n"} +{"Time":"2020-04-21T17:17:28.725581+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725587+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725593+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1586275200,\n"} +{"Time":"2020-04-21T17:17:28.725603+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"0.9889887586565208\"\n"} +{"Time":"2020-04-21T17:17:28.725611+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725617+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725622+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1586304000,\n"} +{"Time":"2020-04-21T17:17:28.725627+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"0.985360361915375\"\n"} +{"Time":"2020-04-21T17:17:28.725633+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725638+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725643+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1586332800,\n"} +{"Time":"2020-04-21T17:17:28.725649+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"0.9889313439856875\"\n"} +{"Time":"2020-04-21T17:17:28.725654+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725659+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725665+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1586361600,\n"} +{"Time":"2020-04-21T17:17:28.725671+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"0.9890460285117708\"\n"} +{"Time":"2020-04-21T17:17:28.725676+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.725681+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.725686+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"timestamp\": 1586390400,\n"} +{"Time":"2020-04-21T17:17:28.725691+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" \"price\": \"0.9927122630952169\"\n"} +{"Time":"2020-04-21T17:17:28.725696+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.725701+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" ]\n"} +{"Time":"2020-04-21T17:17:28.725707+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.725722+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestObserverGetMarketStats","Elapsed":0.07} +{"Time":"2020-04-21T17:17:28.725735+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance"} +{"Time":"2020-04-21T17:17:28.725744+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":"=== RUN TestMemberBalance\n"} +{"Time":"2020-04-21T17:17:28.870567+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":"--- FAIL: TestMemberBalance (0.15s)\n"} +{"Time":"2020-04-21T17:17:28.870625+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" member_balance_test.go:35: C846\tУспешное получение балланса, если мембер был создан через createMember\n"} +{"Time":"2020-04-21T17:17:28.870646+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:28.870656+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" insolar_api_wrapper.go:126: Received seed: IcDfV7ywiFe69IC++VB+5YLLhCJlGMlzc6qGwJJ/pCE=\n"} +{"Time":"2020-04-21T17:17:28.870664+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.870672+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:28.870681+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:28.870689+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.870697+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.870706+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.870714+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:28.870721+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.87073+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.870739+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"id\": 6,\n"} +{"Time":"2020-04-21T17:17:28.870748+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:28.870755+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.870763+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.870802+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.870853+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.870904+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.87091+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.870916+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"id\": 6,\n"} +{"Time":"2020-04-21T17:17:28.870921+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:28.870927+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"seed\": \"IcDfV7ywiFe69IC++VB+5YLLhCJlGMlzc6qGwJJ/pCE=\"\n"} +{"Time":"2020-04-21T17:17:28.870932+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.870937+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:28.870942+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:28.87095+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.870958+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:28.870965+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.870971+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:28.870975+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.87098+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.870993+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.870998+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:28.871005+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:28.87101+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:28.871016+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:28.871021+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.871026+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:28.871031+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:41: -H Digest: [SHA-256=qYe7TojKsfXHth8/9+04xjKX76tz/GpBOlIab2fbWQI=]\n"} +{"Time":"2020-04-21T17:17:28.871036+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEUCIAsKWTu06PeaM/mrpOOYamtgU9Cx64m6t/eHMBaKVS5vAiEA+DSn+E3f21uRuzQp/jNvlIPy+6CDV0TpU1p4kVXgZM8=]\n"} +{"Time":"2020-04-21T17:17:28.871042+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:28.871046+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:28.871051+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.871056+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.871061+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"id\": 7,\n"} +{"Time":"2020-04-21T17:17:28.871066+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:28.871071+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:28.871076+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"seed\": \"IcDfV7ywiFe69IC++VB+5YLLhCJlGMlzc6qGwJJ/pCE=\",\n"} +{"Time":"2020-04-21T17:17:28.871081+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:17:28.871086+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE9/+dtULlOxSj6/X/uhdbjJ+1YLP8\\niO3jCeuHUQyKMQIzK1fZF0VhdFO7mcGA68BtuDKn1DgZEuU3F8rKZxgJgQ==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:28.871092+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.871097+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.871101+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:28.871106+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:28.871111+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:28.871116+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" {\n"} +{"Time":"2020-04-21T17:17:28.87112+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:28.871125+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"id\": 7,\n"} +{"Time":"2020-04-21T17:17:28.87113+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:28.87114+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:28.871145+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.87115+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.871155+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.87116+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:28.871165+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.87117+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:28.871175+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:28.871179+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:28.871185+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"traceID\": \"de48f3f7cb5a958bb3565b28d1a9d988\",\n"} +{"Time":"2020-04-21T17:17:28.87119+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:28.871195+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:28.8712+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" ]\n"} +{"Time":"2020-04-21T17:17:28.871205+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" },\n"} +{"Time":"2020-04-21T17:17:28.871209+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:28.871214+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:28.871219+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.871225+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:28.871232+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:28.871244+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:28.87125+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \t \t\t\t\tinsolar_api_wrapper.go:159\n"} +{"Time":"2020-04-21T17:17:28.87126+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \t \t\t\t\tmember_balance_test.go:36\n"} +{"Time":"2020-04-21T17:17:28.871266+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:28.871276+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \tTest: \tTestMemberBalance\n"} +{"Time":"2020-04-21T17:17:28.871281+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:28.871288+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalance","Elapsed":0.15} +{"Time":"2020-04-21T17:17:28.871295+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance"} +{"Time":"2020-04-21T17:17:28.871301+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":"=== RUN TestMemberMigrationBalance\n"} +{"Time":"2020-04-21T17:17:38.525865+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":"--- PASS: TestMemberMigrationBalance (9.66s)\n"} +{"Time":"2020-04-21T17:17:38.525904+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" member_balance_test.go:43: C847\tУспешное получение балланса, если мембер был создан через migrationCreateMember\n"} +{"Time":"2020-04-21T17:17:38.52594+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:38.525952+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" insolar_api_wrapper.go:126: Received seed: dnfA/J/ZLevb5SF5IcclkWJ+D/4srgLDuw1RETMOT20=\n"} +{"Time":"2020-04-21T17:17:38.525974+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:38.525984+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:38.525992+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:38.526001+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:38.52601+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:38.526018+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:38.526026+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:38.526034+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" {\n"} +{"Time":"2020-04-21T17:17:38.526042+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:38.526069+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"id\": 8,\n"} +{"Time":"2020-04-21T17:17:38.526079+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:38.526088+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.526096+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:38.526103+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:38.526111+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:38.526118+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" {\n"} +{"Time":"2020-04-21T17:17:38.526126+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:38.526136+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"id\": 8,\n"} +{"Time":"2020-04-21T17:17:38.526144+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:38.526153+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"seed\": \"dnfA/J/ZLevb5SF5IcclkWJ+D/4srgLDuw1RETMOT20=\"\n"} +{"Time":"2020-04-21T17:17:38.526161+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.526185+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:38.526194+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:38.526199+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:38.526205+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:38.52621+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.526215+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:38.526219+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:38.526224+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.526229+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.526233+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:38.526238+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:38.526243+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:38.526248+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:38.526254+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:38.526261+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:38.526269+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:41: -H Digest: [SHA-256=dZDQv7G2+Vx6a/02PAsiIodJ6FulMmFbRN44Kx3+3L4=]\n"} +{"Time":"2020-04-21T17:17:38.526278+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEUCIQCC2CaWh1GCWXeU8MEDN29zPih1LcXWRmTDbx69N1U96QIgawPE3kuh6OLeqHwhYbmrspAViFjdz6bU4jY5LpVzGAc=]\n"} +{"Time":"2020-04-21T17:17:38.526296+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:38.526306+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:38.526315+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" {\n"} +{"Time":"2020-04-21T17:17:38.526323+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:38.526331+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"id\": 9,\n"} +{"Time":"2020-04-21T17:17:38.526339+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:38.526347+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:38.526355+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"seed\": \"dnfA/J/ZLevb5SF5IcclkWJ+D/4srgLDuw1RETMOT20=\",\n"} +{"Time":"2020-04-21T17:17:38.526364+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"callSite\": \"member.migrationCreate\",\n"} +{"Time":"2020-04-21T17:17:38.526373+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEClEDLHfZLIZOlZzDIoKJuzjmhlH2\\nUMeidrKNtNHCulww8WWQmBHralNmXP4n74USXruCvINZyn5HDQGKPtnHrg==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:38.526383+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.526391+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.526398+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:38.526406+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:38.526414+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:38.526422+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" {\n"} +{"Time":"2020-04-21T17:17:38.52643+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:38.526439+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"id\": 9,\n"} +{"Time":"2020-04-21T17:17:38.526454+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:38.526463+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:38.526472+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"reference\": \"insolar:1AnVS9CXowLT0F5flwKhXkMuRaFJSFiBkwJ8iqOf0GJM\",\n"} +{"Time":"2020-04-21T17:17:38.52648+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"migrationAddress\": \"0x8dda7eeb1946a1c5b53b2bf9c057811c15ec7bb8\"\n"} +{"Time":"2020-04-21T17:17:38.526489+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.526497+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"requestReference\": \"insolar:1AnVS9L5DbvJ5xhZAGOLCms-4N9VDF6k3SEiM3DVrdXQ.record\",\n"} +{"Time":"2020-04-21T17:17:38.526506+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"traceID\": \"1142402443536a3a81f22c9e66b0a99d\"\n"} +{"Time":"2020-04-21T17:17:38.526515+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.526529+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:38.526538+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:38.526546+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:38.526555+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:38.52657+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:38.526579+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.526593+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:38.526601+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:38.526609+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.526616+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.526624+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" observerapi_wrapper.go:263: Get member by ref insolar:1AnVS9CXowLT0F5flwKhXkMuRaFJSFiBkwJ8iqOf0GJM, attempt 1...\n"} +{"Time":"2020-04-21T17:17:38.526632+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:38.52664+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/member/insolar:1AnVS9CXowLT0F5flwKhXkMuRaFJSFiBkwJ8iqOf0GJM\n"} +{"Time":"2020-04-21T17:17:38.526656+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:38.526665+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:38.526673+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:38.526681+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:38.526689+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:54: http status: 204 No Content\n"} +{"Time":"2020-04-21T17:17:38.526697+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:38.526705+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" {\n"} +{"Time":"2020-04-21T17:17:38.526713+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"reference\": \"\",\n"} +{"Time":"2020-04-21T17:17:38.526722+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"balance\": \"\",\n"} +{"Time":"2020-04-21T17:17:38.526731+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"walletReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:38.526739+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"accountReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:38.526747+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"error\": null\n"} +{"Time":"2020-04-21T17:17:38.526755+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.526763+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" observerapi_wrapper.go:270: Member not found\n"} +{"Time":"2020-04-21T17:17:38.526772+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" observerapi_wrapper.go:263: Get member by ref insolar:1AnVS9CXowLT0F5flwKhXkMuRaFJSFiBkwJ8iqOf0GJM, attempt 2...\n"} +{"Time":"2020-04-21T17:17:38.526781+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" observerapi_wrapper.go:270: Member not found\n"} +{"Time":"2020-04-21T17:17:38.526789+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" observerapi_wrapper.go:263: Get member by ref insolar:1AnVS9CXowLT0F5flwKhXkMuRaFJSFiBkwJ8iqOf0GJM, attempt 3...\n"} +{"Time":"2020-04-21T17:17:38.526798+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" observerapi_wrapper.go:270: Member not found\n"} +{"Time":"2020-04-21T17:17:38.526806+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" observerapi_wrapper.go:263: Get member by ref insolar:1AnVS9CXowLT0F5flwKhXkMuRaFJSFiBkwJ8iqOf0GJM, attempt 4...\n"} +{"Time":"2020-04-21T17:17:38.526818+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" observerapi_wrapper.go:270: Member not found\n"} +{"Time":"2020-04-21T17:17:38.526826+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" observerapi_wrapper.go:263: Get member by ref insolar:1AnVS9CXowLT0F5flwKhXkMuRaFJSFiBkwJ8iqOf0GJM, attempt 5...\n"} +{"Time":"2020-04-21T17:17:38.526835+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" observerapi_wrapper.go:270: Member not found\n"} +{"Time":"2020-04-21T17:17:38.526843+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" observerapi_wrapper.go:263: Get member by ref insolar:1AnVS9CXowLT0F5flwKhXkMuRaFJSFiBkwJ8iqOf0GJM, attempt 6...\n"} +{"Time":"2020-04-21T17:17:38.526852+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" observerapi_wrapper.go:270: Member not found\n"} +{"Time":"2020-04-21T17:17:38.52686+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" observerapi_wrapper.go:263: Get member by ref insolar:1AnVS9CXowLT0F5flwKhXkMuRaFJSFiBkwJ8iqOf0GJM, attempt 7...\n"} +{"Time":"2020-04-21T17:17:38.526868+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" observerapi_wrapper.go:270: Member not found\n"} +{"Time":"2020-04-21T17:17:38.526876+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" observerapi_wrapper.go:263: Get member by ref insolar:1AnVS9CXowLT0F5flwKhXkMuRaFJSFiBkwJ8iqOf0GJM, attempt 8...\n"} +{"Time":"2020-04-21T17:17:38.526884+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" observerapi_wrapper.go:270: Member not found\n"} +{"Time":"2020-04-21T17:17:38.526892+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" observerapi_wrapper.go:263: Get member by ref insolar:1AnVS9CXowLT0F5flwKhXkMuRaFJSFiBkwJ8iqOf0GJM, attempt 9...\n"} +{"Time":"2020-04-21T17:17:38.526903+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" observerapi_wrapper.go:279: Member found!\n"} +{"Time":"2020-04-21T17:17:38.526909+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:38.526914+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/member/insolar:1AnVS9CXowLT0F5flwKhXkMuRaFJSFiBkwJ8iqOf0GJM\n"} +{"Time":"2020-04-21T17:17:38.526919+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:38.526924+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:38.526929+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:38.526933+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:38.526938+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:38.526943+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:38.526954+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" {\n"} +{"Time":"2020-04-21T17:17:38.526959+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"reference\": \"insolar:1AnVS9CXowLT0F5flwKhXkMuRaFJSFiBkwJ8iqOf0GJM\",\n"} +{"Time":"2020-04-21T17:17:38.526966+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"balance\": \"0\",\n"} +{"Time":"2020-04-21T17:17:38.526973+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"walletReference\": \"insolar:1AnVS9EjZgCfouc3MTH6iq8xp-PnlyHDxbElCOdb-ku8\",\n"} +{"Time":"2020-04-21T17:17:38.526979+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"accountReference\": \"insolar:1AnVS9D6bemf4okMkOIYD4ZwV0WPL5Zcfl-eS7KG292w\",\n"} +{"Time":"2020-04-21T17:17:38.526984+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"migrationAddress\": \"0x8dda7eeb1946a1c5b53b2bf9c057811c15ec7bb8\",\n"} +{"Time":"2020-04-21T17:17:38.52699+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"error\": null\n"} +{"Time":"2020-04-21T17:17:38.526994+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.526999+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" observerapi_wrapper.go:64: reference = insolar:1AnVS9CXowLT0F5flwKhXkMuRaFJSFiBkwJ8iqOf0GJM\n"} +{"Time":"2020-04-21T17:17:38.527004+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:38.527009+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/member/insolar:1AnVS9CXowLT0F5flwKhXkMuRaFJSFiBkwJ8iqOf0GJM/balance\n"} +{"Time":"2020-04-21T17:17:38.527015+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:38.527022+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:38.527027+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:38.527031+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:38.527036+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:38.527041+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:38.527045+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" {\n"} +{"Time":"2020-04-21T17:17:38.52705+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"balance\": \"0\",\n"} +{"Time":"2020-04-21T17:17:38.527055+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" \"error\": null\n"} +{"Time":"2020-04-21T17:17:38.52706+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.527067+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigrationBalance","Elapsed":9.66} +{"Time":"2020-04-21T17:17:38.527075+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer"} +{"Time":"2020-04-21T17:17:38.527085+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":"=== RUN TestMemberBalanceWithTransfer\n"} +{"Time":"2020-04-21T17:17:38.675012+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":"--- FAIL: TestMemberBalanceWithTransfer (0.15s)\n"} +{"Time":"2020-04-21T17:17:38.67505+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" member_balance_test.go:51: C848\tУспешное получение балланса, если мембер был создан через createMember + transfer от другого мембера\n"} +{"Time":"2020-04-21T17:17:38.675063+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:38.675075+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" insolar_api_wrapper.go:126: Received seed: 9nwsXukLmD/axsOafOvDq02j9ewAYdaxVHXQ9G2MZ3M=\n"} +{"Time":"2020-04-21T17:17:38.675085+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:38.675093+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:38.675126+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:38.675131+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:38.675136+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:38.675141+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:38.675146+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:38.675151+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:38.675156+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:38.675161+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"id\": 10,\n"} +{"Time":"2020-04-21T17:17:38.675166+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:38.675171+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.675176+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:38.675181+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:38.675185+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:38.67519+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:38.675195+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:38.6752+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"id\": 10,\n"} +{"Time":"2020-04-21T17:17:38.675205+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:38.675211+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"seed\": \"9nwsXukLmD/axsOafOvDq02j9ewAYdaxVHXQ9G2MZ3M=\"\n"} +{"Time":"2020-04-21T17:17:38.675216+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.675221+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:38.675226+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:38.675231+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:38.675236+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:38.675241+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.675246+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:38.675251+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:38.675256+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.675272+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.675278+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:38.675283+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:38.675288+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:38.675293+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:38.675298+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEYCIQCogbieyt79D5t10WS22YF0jYU4MDcLNaFswsPG1RmfRgIhAL0bDtqhOMjHXG5gmidKfTA36Oba2KFxVM4EmKnBVwNP]\n"} +{"Time":"2020-04-21T17:17:38.675304+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:38.675309+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:38.675314+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:38.675325+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:41: -H Digest: [SHA-256=a/WK4od4NUx0zuI33HryakkD7TRqT1wvUIHcU7S134I=]\n"} +{"Time":"2020-04-21T17:17:38.67533+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:38.675335+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:38.67534+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:38.675345+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"id\": 11,\n"} +{"Time":"2020-04-21T17:17:38.67535+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:38.675355+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:38.67536+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"seed\": \"9nwsXukLmD/axsOafOvDq02j9ewAYdaxVHXQ9G2MZ3M=\",\n"} +{"Time":"2020-04-21T17:17:38.675365+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:17:38.67537+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEO6L1gw2Ey9EDH4X6Q55L38aP07ry\\n3g5sxEPODYW2/B32XWuVATZscjtbFh36vfGcqYdqtCOKLIau59ANYzenvw==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:38.675376+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.675381+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.675385+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:38.675391+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:38.675396+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:38.675406+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:38.675411+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:38.675416+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"id\": 11,\n"} +{"Time":"2020-04-21T17:17:38.675421+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:38.675428+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:38.675433+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:38.675438+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.675443+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:38.675456+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:38.675461+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.675466+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:38.67547+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:38.675475+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:38.67548+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"traceID\": \"8c4504dd9d32f89cd258675913a43ea9\",\n"} +{"Time":"2020-04-21T17:17:38.675486+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:38.675491+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:38.675495+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" ]\n"} +{"Time":"2020-04-21T17:17:38.6755+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.675505+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:38.67551+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:38.675515+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.67552+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.675528+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:38.675542+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:38.675551+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \t \t\t\t\tinsolar_api_wrapper.go:159\n"} +{"Time":"2020-04-21T17:17:38.675558+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \t \t\t\t\tmember_balance_test.go:53\n"} +{"Time":"2020-04-21T17:17:38.675563+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:38.675568+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \tTest: \tTestMemberBalanceWithTransfer\n"} +{"Time":"2020-04-21T17:17:38.675573+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:38.67558+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceWithTransfer","Elapsed":0.15} +{"Time":"2020-04-21T17:17:38.675587+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef"} +{"Time":"2020-04-21T17:17:38.675593+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":"=== RUN TestMemberBalanceByBadRef\n"} +{"Time":"2020-04-21T17:17:38.815513+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":"--- FAIL: TestMemberBalanceByBadRef (0.14s)\n"} +{"Time":"2020-04-21T17:17:38.815552+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:38.815564+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" insolar_api_wrapper.go:126: Received seed: qdsmbZNlIBg3Nwt1p3/a8zoxp7dkOMCFn1H2YDeWz9o=\n"} +{"Time":"2020-04-21T17:17:38.815573+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:38.815582+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:38.815595+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:38.815603+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:38.815637+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:38.815642+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:38.815648+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:38.815653+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" {\n"} +{"Time":"2020-04-21T17:17:38.815658+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:38.815664+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"id\": 12,\n"} +{"Time":"2020-04-21T17:17:38.81567+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:38.815676+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.815682+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:38.815687+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:38.815706+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:38.815711+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" {\n"} +{"Time":"2020-04-21T17:17:38.815716+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:38.815721+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"id\": 12,\n"} +{"Time":"2020-04-21T17:17:38.815736+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:38.815742+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"seed\": \"qdsmbZNlIBg3Nwt1p3/a8zoxp7dkOMCFn1H2YDeWz9o=\"\n"} +{"Time":"2020-04-21T17:17:38.815747+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.815752+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:38.815757+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:38.815762+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:38.815767+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:38.815772+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.815777+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:38.815782+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:38.815787+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.815791+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.815796+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:38.815801+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:38.815806+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:38.815811+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:38.815819+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEQCIHsuQS2FunqjzsVSHXhocaXYHdW4Xu+0fn2BdKh2w6T1AiAwS+wdvhxrb1aEfN8JiHn4Q8evEli/gIpdQiFZ6lxORQ==]\n"} +{"Time":"2020-04-21T17:17:38.815827+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:38.815835+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:38.815843+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:38.81585+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:41: -H Digest: [SHA-256=RVACFKg9iiJkNb+d+6nvOMNfZACvgOgWmGOeePGc94U=]\n"} +{"Time":"2020-04-21T17:17:38.815859+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:38.815864+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" {\n"} +{"Time":"2020-04-21T17:17:38.815869+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:38.815874+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"id\": 13,\n"} +{"Time":"2020-04-21T17:17:38.815887+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:38.815893+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:38.815898+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"seed\": \"qdsmbZNlIBg3Nwt1p3/a8zoxp7dkOMCFn1H2YDeWz9o=\",\n"} +{"Time":"2020-04-21T17:17:38.815908+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:17:38.815914+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE/k9hG7J0fzHalRSdB915ThxSjWIk\\nWQcgSnHSfuLVgYHJETgJFoly246QfEmkR1Ysm9AIp6RF/I6d4ZH4HKfUiA==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:38.81592+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.815925+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.81593+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:38.815934+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:38.815939+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:38.815944+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" {\n"} +{"Time":"2020-04-21T17:17:38.815954+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:38.815959+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"id\": 13,\n"} +{"Time":"2020-04-21T17:17:38.815964+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:38.815969+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:38.815974+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:38.815979+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.815983+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:38.815988+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:38.815993+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.815998+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:38.816002+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:38.816007+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:38.816018+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"traceID\": \"024713e5bdfa3801951805d9fc38359a\",\n"} +{"Time":"2020-04-21T17:17:38.816023+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:38.816028+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:38.816033+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" ]\n"} +{"Time":"2020-04-21T17:17:38.816038+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.816042+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:38.816047+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:38.816052+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.816057+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.816062+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:38.816068+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:38.816074+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \t \t\t\t\tinsolar_api_wrapper.go:159\n"} +{"Time":"2020-04-21T17:17:38.816079+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \t \t\t\t\tmember_balance_test.go:68\n"} +{"Time":"2020-04-21T17:17:38.816084+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:38.816089+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \tTest: \tTestMemberBalanceByBadRef\n"} +{"Time":"2020-04-21T17:17:38.816094+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:38.816101+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberBalanceByBadRef","Elapsed":0.14} +{"Time":"2020-04-21T17:17:38.816109+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey"} +{"Time":"2020-04-21T17:17:38.816114+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":"=== RUN TestGetMemberByPublicKey\n"} +{"Time":"2020-04-21T17:17:38.946615+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":"--- FAIL: TestGetMemberByPublicKey (0.13s)\n"} +{"Time":"2020-04-21T17:17:38.946637+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" member_by_public_key_test.go:36: С938 Успешное получение мембера по публичному ключу\n"} +{"Time":"2020-04-21T17:17:38.946645+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:38.94665+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" insolar_api_wrapper.go:126: Received seed: 6tUKWRiZ87v8yGe3R3OLCwEZgNWavCNIlWq2pxFShxA=\n"} +{"Time":"2020-04-21T17:17:38.946653+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:38.946657+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:38.94666+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:38.946663+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:38.946678+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:38.946682+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:38.946685+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:38.946688+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" {\n"} +{"Time":"2020-04-21T17:17:38.946692+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:38.946697+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"id\": 14,\n"} +{"Time":"2020-04-21T17:17:38.946702+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:38.946707+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.946711+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:38.946714+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:38.946717+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:38.94672+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" {\n"} +{"Time":"2020-04-21T17:17:38.946724+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:38.94673+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"id\": 14,\n"} +{"Time":"2020-04-21T17:17:38.946735+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:38.94674+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"seed\": \"6tUKWRiZ87v8yGe3R3OLCwEZgNWavCNIlWq2pxFShxA=\"\n"} +{"Time":"2020-04-21T17:17:38.946746+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.946749+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:38.946753+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:38.946756+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:38.946759+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:38.946763+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.946768+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:38.946772+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:38.946777+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.946782+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.946787+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:38.94679+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:38.946793+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:38.946796+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:38.946799+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:38.946802+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:38.946806+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:41: -H Digest: [SHA-256=Hj/q8cniquhe8r9U9uHSpEOObl8h71i2uisAHhU2B/Q=]\n"} +{"Time":"2020-04-21T17:17:38.946809+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEQCIBHPQsRWND7b4KJUUEVVNeXFBdlbeFMf+W85knal+XHxAiBCWDUNe3PnV1HwnFNYP8+xrWcqJUb5MB7nVAiRvmdD3A==]\n"} +{"Time":"2020-04-21T17:17:38.946813+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:38.946816+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:38.946819+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" {\n"} +{"Time":"2020-04-21T17:17:38.946822+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:38.946825+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"id\": 15,\n"} +{"Time":"2020-04-21T17:17:38.946828+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:38.946831+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:38.946835+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"seed\": \"6tUKWRiZ87v8yGe3R3OLCwEZgNWavCNIlWq2pxFShxA=\",\n"} +{"Time":"2020-04-21T17:17:38.946838+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:17:38.946847+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEOFDWZXMbQX8mGztzM4JiDtblyJJ7\\n/q31Ym4hJYkEPWiOuRU111vONgu6zfglaoSGBQPkQOI6hL18Swr7rW+sVQ==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:38.946852+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.946855+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.946858+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:38.946863+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:38.946872+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:38.946876+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" {\n"} +{"Time":"2020-04-21T17:17:38.946879+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:38.946882+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"id\": 15,\n"} +{"Time":"2020-04-21T17:17:38.946888+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:38.946891+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:38.946895+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:38.946899+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.946904+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:38.946909+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:38.946912+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.946915+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:38.946922+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:38.946925+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:38.946936+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"traceID\": \"a14e03dddd0e194764130e56f3bfbf9b\",\n"} +{"Time":"2020-04-21T17:17:38.94694+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:38.946943+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:38.946947+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" ]\n"} +{"Time":"2020-04-21T17:17:38.946952+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" },\n"} +{"Time":"2020-04-21T17:17:38.946957+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:38.94696+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:38.946963+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.946966+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" }\n"} +{"Time":"2020-04-21T17:17:38.946969+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:38.946972+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:38.946975+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \t \t\t\t\tinsolar_api_wrapper.go:159\n"} +{"Time":"2020-04-21T17:17:38.946979+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \t \t\t\t\tmember_by_public_key_test.go:37\n"} +{"Time":"2020-04-21T17:17:38.946982+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:38.946987+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \tTest: \tTestGetMemberByPublicKey\n"} +{"Time":"2020-04-21T17:17:38.946993+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:38.946998+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKey","Elapsed":0.13} +{"Time":"2020-04-21T17:17:38.947003+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember"} +{"Time":"2020-04-21T17:17:38.947007+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":"=== RUN TestGetMemberByPublicKeyNoMember\n"} +{"Time":"2020-04-21T17:17:39.010332+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":"--- PASS: TestGetMemberByPublicKeyNoMember (0.06s)\n"} +{"Time":"2020-04-21T17:17:39.010365+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" member_by_public_key_test.go:51: C939 Мембер не найден по публичному ключу\n"} +{"Time":"2020-04-21T17:17:39.010372+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:39.010411+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/member/byPublicKey?publicKey=-----BEGIN+PUBLIC+KEY-----%0AMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAErtsKHI64DFmSHBJjPyZPpOhCa7dU%0AVMGfaXcrhQTIgXhHkFE3oc4%2F1XUgdL9IVZovFV%2FlCsBwkvs4wRqhRHspng%3D%3D%0A-----END+PUBLIC+KEY-----%0A\n"} +{"Time":"2020-04-21T17:17:39.01043+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" apilogger.go:36: Query params: map[publicKey:[-----BEGIN PUBLIC KEY-----\n"} +{"Time":"2020-04-21T17:17:39.010435+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAErtsKHI64DFmSHBJjPyZPpOhCa7dU\n"} +{"Time":"2020-04-21T17:17:39.010439+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" VMGfaXcrhQTIgXhHkFE3oc4/1XUgdL9IVZovFV/lCsBwkvs4wRqhRHspng==\n"} +{"Time":"2020-04-21T17:17:39.010455+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" -----END PUBLIC KEY-----\n"} +{"Time":"2020-04-21T17:17:39.01046+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" ]]\n"} +{"Time":"2020-04-21T17:17:39.010465+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:39.01047+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:39.010474+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:39.010478+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" apilogger.go:54: http status: 204 No Content\n"} +{"Time":"2020-04-21T17:17:39.010482+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:39.010486+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" {\n"} +{"Time":"2020-04-21T17:17:39.01049+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" \"reference\": \"\",\n"} +{"Time":"2020-04-21T17:17:39.010494+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" \"balance\": \"\",\n"} +{"Time":"2020-04-21T17:17:39.010498+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" \"walletReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:39.010502+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" \"accountReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:39.010506+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" \"error\": null\n"} +{"Time":"2020-04-21T17:17:39.01051+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Output":" }\n"} +{"Time":"2020-04-21T17:17:39.010515+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyNoMember","Elapsed":0.06} +{"Time":"2020-04-21T17:17:39.010522+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyInvalidReferenceFormat"} +{"Time":"2020-04-21T17:17:39.010525+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyInvalidReferenceFormat","Output":"=== RUN TestGetMemberByPublicKeyInvalidReferenceFormat\n"} +{"Time":"2020-04-21T17:17:39.010535+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyInvalidReferenceFormat","Output":"--- SKIP: TestGetMemberByPublicKeyInvalidReferenceFormat (0.00s)\n"} +{"Time":"2020-04-21T17:17:39.010539+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyInvalidReferenceFormat","Output":" member_by_public_key_test.go:65: С940 Валидация ключа\n"} +{"Time":"2020-04-21T17:17:39.010544+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyInvalidReferenceFormat","Output":" member_by_public_key_test.go:66: validation is not implemented\n"} +{"Time":"2020-04-21T17:17:39.010548+03:00","Action":"skip","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberByPublicKeyInvalidReferenceFormat","Elapsed":0} +{"Time":"2020-04-21T17:17:39.010552+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember"} +{"Time":"2020-04-21T17:17:39.010556+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":"=== RUN TestMember\n"} +{"Time":"2020-04-21T17:17:39.142045+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":"--- FAIL: TestMember (0.13s)\n"} +{"Time":"2020-04-21T17:17:39.142069+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" member_test.go:39: C840\tУспешное получение мембера, если он был создан через createMember\n"} +{"Time":"2020-04-21T17:17:39.142076+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:39.142081+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" insolar_api_wrapper.go:126: Received seed: G+sLasojuOkpwMmun0zviujCtdisX9ewbyds9AUidVw=\n"} +{"Time":"2020-04-21T17:17:39.142099+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:39.142115+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:39.14212+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:39.142125+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:39.142129+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:39.142133+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:39.142137+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:39.142141+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" {\n"} +{"Time":"2020-04-21T17:17:39.142146+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:39.14215+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"id\": 16,\n"} +{"Time":"2020-04-21T17:17:39.142154+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:39.142169+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" }\n"} +{"Time":"2020-04-21T17:17:39.142174+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:39.142194+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:39.142199+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:39.142203+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" {\n"} +{"Time":"2020-04-21T17:17:39.142207+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:39.14221+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"id\": 16,\n"} +{"Time":"2020-04-21T17:17:39.142215+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:39.142219+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"seed\": \"G+sLasojuOkpwMmun0zviujCtdisX9ewbyds9AUidVw=\"\n"} +{"Time":"2020-04-21T17:17:39.142224+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" },\n"} +{"Time":"2020-04-21T17:17:39.142228+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:39.142232+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:39.142236+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:39.142241+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:39.142245+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" },\n"} +{"Time":"2020-04-21T17:17:39.142249+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:39.142253+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:39.142256+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" }\n"} +{"Time":"2020-04-21T17:17:39.142266+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" }\n"} +{"Time":"2020-04-21T17:17:39.142271+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:39.142275+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:39.142279+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:39.142284+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:39.142288+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEUCIQCzAkjs9zIPsSqo45nzDJlb82yxgIbIXTQJAs4o5oRVNAIgTwBTb9lSAU2rqznHiKHhOeJsDm+Q1MjPZtkrCwAnIXo=]\n"} +{"Time":"2020-04-21T17:17:39.142293+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:39.142297+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:39.142302+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:39.142306+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:41: -H Digest: [SHA-256=KNQJT2VyVOnjcWnoUXiT6Fxd1JreMmqUJGa0EDCyfzI=]\n"} +{"Time":"2020-04-21T17:17:39.142315+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:39.142319+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" {\n"} +{"Time":"2020-04-21T17:17:39.142323+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:39.142328+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"id\": 17,\n"} +{"Time":"2020-04-21T17:17:39.142332+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:39.142336+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:39.142341+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"seed\": \"G+sLasojuOkpwMmun0zviujCtdisX9ewbyds9AUidVw=\",\n"} +{"Time":"2020-04-21T17:17:39.142345+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:17:39.142349+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEPD8RyhBz3k5vdCAhKUV1nLdKoyMn\\ncTNzc6q0UlxcrQ5oP+jdzReF3WQn4qU7GBiACHqdtY7egt/Zic4/GGAZwQ==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:39.142354+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" }\n"} +{"Time":"2020-04-21T17:17:39.142358+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" }\n"} +{"Time":"2020-04-21T17:17:39.142362+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:39.142366+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:39.14237+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:39.142374+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" {\n"} +{"Time":"2020-04-21T17:17:39.142378+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:39.142382+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"id\": 17,\n"} +{"Time":"2020-04-21T17:17:39.142386+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:39.142389+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:39.142393+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:39.142409+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" },\n"} +{"Time":"2020-04-21T17:17:39.142425+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:39.142431+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:39.142436+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" },\n"} +{"Time":"2020-04-21T17:17:39.14244+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:39.142453+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:39.142458+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:39.142463+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"traceID\": \"204304db59b5c2f5a23eb248df9fbab2\",\n"} +{"Time":"2020-04-21T17:17:39.142468+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:39.142472+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:39.142476+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" ]\n"} +{"Time":"2020-04-21T17:17:39.142485+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" },\n"} +{"Time":"2020-04-21T17:17:39.142489+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:39.142498+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:39.142503+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" }\n"} +{"Time":"2020-04-21T17:17:39.142508+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" }\n"} +{"Time":"2020-04-21T17:17:39.142512+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:39.142516+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:39.142528+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \t \t\t\t\tinsolar_api_wrapper.go:159\n"} +{"Time":"2020-04-21T17:17:39.142534+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \t \t\t\t\tmember_test.go:40\n"} +{"Time":"2020-04-21T17:17:39.14254+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:39.142545+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \tTest: \tTestMember\n"} +{"Time":"2020-04-21T17:17:39.14255+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:39.142556+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMember","Elapsed":0.13} +{"Time":"2020-04-21T17:17:39.142563+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration"} +{"Time":"2020-04-21T17:17:39.142567+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":"=== RUN TestMemberMigration\n"} +{"Time":"2020-04-21T17:17:39.403848+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":"--- FAIL: TestMemberMigration (0.26s)\n"} +{"Time":"2020-04-21T17:17:39.403887+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" member_test.go:58: C841\tУспешное получение мембера, если он был создан через migrationCreateMember\n"} +{"Time":"2020-04-21T17:17:39.403901+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:39.40391+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" insolar_api_wrapper.go:126: Received seed: HMexRdjNXJkF5eTVK+TiUQwjJlam+BMqP2WRNzj+U6o=\n"} +{"Time":"2020-04-21T17:17:39.403919+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:39.403926+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:39.403954+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:39.403963+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:39.403971+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:39.403979+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:39.404012+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:39.404017+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" {\n"} +{"Time":"2020-04-21T17:17:39.404023+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:39.404028+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"id\": 18,\n"} +{"Time":"2020-04-21T17:17:39.404034+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:39.40404+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" }\n"} +{"Time":"2020-04-21T17:17:39.404045+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:39.40405+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:39.404055+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:39.40406+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" {\n"} +{"Time":"2020-04-21T17:17:39.404064+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:39.404069+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"id\": 18,\n"} +{"Time":"2020-04-21T17:17:39.404074+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:39.404079+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"seed\": \"HMexRdjNXJkF5eTVK+TiUQwjJlam+BMqP2WRNzj+U6o=\"\n"} +{"Time":"2020-04-21T17:17:39.404084+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" },\n"} +{"Time":"2020-04-21T17:17:39.404106+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:39.404125+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:39.404132+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:39.404137+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:39.404142+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" },\n"} +{"Time":"2020-04-21T17:17:39.404147+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:39.404152+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:39.404157+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" }\n"} +{"Time":"2020-04-21T17:17:39.404162+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" }\n"} +{"Time":"2020-04-21T17:17:39.404167+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:39.404171+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:39.404176+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:39.404181+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:39.404186+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:39.404191+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:39.404196+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:41: -H Digest: [SHA-256=OGP5xRsB4dS7sezLbFZaZ2Tfz53v4WjGtv6ZCl6lmSk=]\n"} +{"Time":"2020-04-21T17:17:39.404201+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEYCIQCiqA7G5KeAJIg4/1pPh5fcZZkb5MAwdsvEXxsPKWAXywIhAOTb8nqRl+jcg3dVpJNcyL0QDCO28MN528dVVDclyd/K]\n"} +{"Time":"2020-04-21T17:17:39.404207+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:39.404222+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:39.404227+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" {\n"} +{"Time":"2020-04-21T17:17:39.404232+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:39.404237+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"id\": 19,\n"} +{"Time":"2020-04-21T17:17:39.404242+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:39.404247+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:39.404252+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"seed\": \"HMexRdjNXJkF5eTVK+TiUQwjJlam+BMqP2WRNzj+U6o=\",\n"} +{"Time":"2020-04-21T17:17:39.404257+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"callSite\": \"member.migrationCreate\",\n"} +{"Time":"2020-04-21T17:17:39.404262+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEHaTwGk7CH4Ov1+8ZlAZz3FzUqt7A\\nzQbcd/wXnMATjm4QY+1Wc9LoIcjwoKs9mTutpWnvsJx3U/k7QelQ3GPlng==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:39.404268+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" }\n"} +{"Time":"2020-04-21T17:17:39.404273+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" }\n"} +{"Time":"2020-04-21T17:17:39.404277+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:39.404282+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:39.404297+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:39.404307+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" {\n"} +{"Time":"2020-04-21T17:17:39.404311+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:39.404316+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"id\": 19,\n"} +{"Time":"2020-04-21T17:17:39.404321+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:39.404326+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:39.404331+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:39.404335+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" },\n"} +{"Time":"2020-04-21T17:17:39.40434+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:39.404345+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:39.40435+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" },\n"} +{"Time":"2020-04-21T17:17:39.404355+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:39.404359+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:39.404364+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:39.404369+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"traceID\": \"6341c679d2af399f62fc6b4c6cf79a9d\",\n"} +{"Time":"2020-04-21T17:17:39.404374+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:39.404379+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:39.404384+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" ]\n"} +{"Time":"2020-04-21T17:17:39.404389+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" },\n"} +{"Time":"2020-04-21T17:17:39.404394+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:39.404399+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:39.404404+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" }\n"} +{"Time":"2020-04-21T17:17:39.404408+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" }\n"} +{"Time":"2020-04-21T17:17:39.404413+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:39.404418+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:39.404422+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \t \t\t\t\tinsolar_api_wrapper.go:239\n"} +{"Time":"2020-04-21T17:17:39.404428+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \t \t\t\t\tmember_test.go:59\n"} +{"Time":"2020-04-21T17:17:39.404433+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:39.404438+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \tTest: \tTestMemberMigration\n"} +{"Time":"2020-04-21T17:17:39.404443+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:39.404449+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration","Elapsed":0.26} +{"Time":"2020-04-21T17:17:39.404457+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success"} +{"Time":"2020-04-21T17:17:39.404461+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":"=== RUN TestMemberMigration_GetByMigrationAddress_Success\n"} +{"Time":"2020-04-21T17:17:49.279503+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":"--- PASS: TestMemberMigration_GetByMigrationAddress_Success (9.88s)\n"} +{"Time":"2020-04-21T17:17:49.279541+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" member_test.go:78: C1628 Успешное получение мембера по миграционному адресу, если он был создан через migrationCreateMember\n"} +{"Time":"2020-04-21T17:17:49.279555+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:49.279564+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" insolar_api_wrapper.go:126: Received seed: cs6yXVGye78b6Xd8il30TJBECt6LPDay8cDSE5U6diI=\n"} +{"Time":"2020-04-21T17:17:49.279573+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:49.279581+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:49.27959+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:49.279599+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.279607+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.279619+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:49.279631+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:49.279664+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.279676+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:49.279687+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"id\": 20,\n"} +{"Time":"2020-04-21T17:17:49.279697+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:49.279707+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.27972+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:49.27973+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:49.27974+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:49.279749+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.279766+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:49.279776+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"id\": 20,\n"} +{"Time":"2020-04-21T17:17:49.279785+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:49.279793+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"seed\": \"cs6yXVGye78b6Xd8il30TJBECt6LPDay8cDSE5U6diI=\"\n"} +{"Time":"2020-04-21T17:17:49.279801+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.279809+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:49.279816+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:49.279824+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.279832+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:49.27984+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.279848+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:49.279856+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:49.279864+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.279872+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.279879+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:49.279886+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:49.279893+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:49.279909+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:49.279916+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.279924+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.279931+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:41: -H Digest: [SHA-256=ECTJOB2EuYESY6MizPQ7XUBB2ftuBoFG3xYgN0cLXP4=]\n"} +{"Time":"2020-04-21T17:17:49.279939+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEUCIDleluSMMnuqnuLRlhLz4k0lvKNTbSFJTXgDErX/QL6VAiEAjpeDGOyDFTlsoij1C8cqhFCVtIPZU/9cC5tosme3Ebo=]\n"} +{"Time":"2020-04-21T17:17:49.279948+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:49.279955+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:49.279963+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.27997+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:49.279978+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"id\": 21,\n"} +{"Time":"2020-04-21T17:17:49.279986+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:49.279994+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:49.280001+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"seed\": \"cs6yXVGye78b6Xd8il30TJBECt6LPDay8cDSE5U6diI=\",\n"} +{"Time":"2020-04-21T17:17:49.280009+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"callSite\": \"member.migrationCreate\",\n"} +{"Time":"2020-04-21T17:17:49.280017+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAECGoCBqWLZrwdEQvUhYTBgjP60RNL\\nAMWHfpTZNjTnfYKuao/XQABHaBZb0MseW+1mzx6vHg1Dqm06ANDVdbAiSg==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:49.280027+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.280034+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.280041+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:49.280048+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:49.280056+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:49.280063+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.28007+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:49.280078+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"id\": 21,\n"} +{"Time":"2020-04-21T17:17:49.280086+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:49.280093+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:49.2801+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"reference\": \"insolar:1AnVS_vp-8wbOnctfW8rmgIk9PoaUW2ofsXr7VLXI7s8\",\n"} +{"Time":"2020-04-21T17:17:49.280109+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"migrationAddress\": \"0xfd60f97e8b4f3a2bce9a8c84e230587ce3dbb108\"\n"} +{"Time":"2020-04-21T17:17:49.280117+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.280124+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"requestReference\": \"insolar:1AnVS_gY91Aw5pIaO9oXvKkjcu_hX_EIGyB1Ouc6uDA0.record\",\n"} +{"Time":"2020-04-21T17:17:49.280132+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"traceID\": \"fa41ad5f974827b77d8ee5a0663a62ae\"\n"} +{"Time":"2020-04-21T17:17:49.28014+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.280147+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:49.280162+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:49.28017+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.280178+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.280186+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:49.280193+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.2802+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:49.280208+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:49.280216+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.280223+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.28023+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" observerapi_wrapper.go:263: Get member by ref insolar:1AnVS_vp-8wbOnctfW8rmgIk9PoaUW2ofsXr7VLXI7s8, attempt 1...\n"} +{"Time":"2020-04-21T17:17:49.280238+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:49.280246+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/member/insolar:1AnVS_vp-8wbOnctfW8rmgIk9PoaUW2ofsXr7VLXI7s8\n"} +{"Time":"2020-04-21T17:17:49.280254+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:49.280261+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.280269+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:49.280283+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:49.280291+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:54: http status: 204 No Content\n"} +{"Time":"2020-04-21T17:17:49.280298+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:49.280305+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.280312+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"reference\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.28032+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"balance\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.280338+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"walletReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.280346+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"accountReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.280354+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"error\": null\n"} +{"Time":"2020-04-21T17:17:49.280362+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.28037+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" observerapi_wrapper.go:270: Member not found\n"} +{"Time":"2020-04-21T17:17:49.280389+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" observerapi_wrapper.go:263: Get member by ref insolar:1AnVS_vp-8wbOnctfW8rmgIk9PoaUW2ofsXr7VLXI7s8, attempt 2...\n"} +{"Time":"2020-04-21T17:17:49.280397+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" observerapi_wrapper.go:270: Member not found\n"} +{"Time":"2020-04-21T17:17:49.280404+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" observerapi_wrapper.go:263: Get member by ref insolar:1AnVS_vp-8wbOnctfW8rmgIk9PoaUW2ofsXr7VLXI7s8, attempt 3...\n"} +{"Time":"2020-04-21T17:17:49.280412+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" observerapi_wrapper.go:270: Member not found\n"} +{"Time":"2020-04-21T17:17:49.280419+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" observerapi_wrapper.go:263: Get member by ref insolar:1AnVS_vp-8wbOnctfW8rmgIk9PoaUW2ofsXr7VLXI7s8, attempt 4...\n"} +{"Time":"2020-04-21T17:17:49.280428+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" observerapi_wrapper.go:270: Member not found\n"} +{"Time":"2020-04-21T17:17:49.280435+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" observerapi_wrapper.go:263: Get member by ref insolar:1AnVS_vp-8wbOnctfW8rmgIk9PoaUW2ofsXr7VLXI7s8, attempt 5...\n"} +{"Time":"2020-04-21T17:17:49.280443+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" observerapi_wrapper.go:270: Member not found\n"} +{"Time":"2020-04-21T17:17:49.280473+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" observerapi_wrapper.go:263: Get member by ref insolar:1AnVS_vp-8wbOnctfW8rmgIk9PoaUW2ofsXr7VLXI7s8, attempt 6...\n"} +{"Time":"2020-04-21T17:17:49.280483+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" observerapi_wrapper.go:270: Member not found\n"} +{"Time":"2020-04-21T17:17:49.280504+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" observerapi_wrapper.go:263: Get member by ref insolar:1AnVS_vp-8wbOnctfW8rmgIk9PoaUW2ofsXr7VLXI7s8, attempt 7...\n"} +{"Time":"2020-04-21T17:17:49.28051+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" observerapi_wrapper.go:270: Member not found\n"} +{"Time":"2020-04-21T17:17:49.280514+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" observerapi_wrapper.go:263: Get member by ref insolar:1AnVS_vp-8wbOnctfW8rmgIk9PoaUW2ofsXr7VLXI7s8, attempt 8...\n"} +{"Time":"2020-04-21T17:17:49.280519+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" observerapi_wrapper.go:270: Member not found\n"} +{"Time":"2020-04-21T17:17:49.280524+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" observerapi_wrapper.go:263: Get member by ref insolar:1AnVS_vp-8wbOnctfW8rmgIk9PoaUW2ofsXr7VLXI7s8, attempt 9...\n"} +{"Time":"2020-04-21T17:17:49.280529+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" observerapi_wrapper.go:279: Member found!\n"} +{"Time":"2020-04-21T17:17:49.280534+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:49.280539+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/member/insolar:1AnVS_vp-8wbOnctfW8rmgIk9PoaUW2ofsXr7VLXI7s8\n"} +{"Time":"2020-04-21T17:17:49.280544+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:49.280549+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.280554+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:49.280559+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:49.280563+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:49.280568+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:49.280573+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.280578+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"reference\": \"insolar:1AnVS_vp-8wbOnctfW8rmgIk9PoaUW2ofsXr7VLXI7s8\",\n"} +{"Time":"2020-04-21T17:17:49.280583+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"balance\": \"0\",\n"} +{"Time":"2020-04-21T17:17:49.280588+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"walletReference\": \"insolar:1AnVS_smwGhlnEFBgtwdCRpvoi-72-RJ1gMwOLQL8wrw\",\n"} +{"Time":"2020-04-21T17:17:49.280593+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"accountReference\": \"insolar:1AnVS_hyIbGR63YFBZt3BkjBnxI-1uAPlUlHeXtNWyFY\",\n"} +{"Time":"2020-04-21T17:17:49.280598+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"migrationAddress\": \"0xfd60f97e8b4f3a2bce9a8c84e230587ce3dbb108\",\n"} +{"Time":"2020-04-21T17:17:49.280603+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"error\": null\n"} +{"Time":"2020-04-21T17:17:49.280608+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.280619+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" observerapi_wrapper.go:120: Get member by ref 0xfd60f97e8b4f3a2bce9a8c84e230587ce3dbb108\n"} +{"Time":"2020-04-21T17:17:49.280624+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:49.280629+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/member/0xfd60f97e8b4f3a2bce9a8c84e230587ce3dbb108\n"} +{"Time":"2020-04-21T17:17:49.280634+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:49.280639+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.280644+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:49.280649+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:49.280653+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:49.280658+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:49.280667+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.280671+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"reference\": \"insolar:1AnVS_vp-8wbOnctfW8rmgIk9PoaUW2ofsXr7VLXI7s8\",\n"} +{"Time":"2020-04-21T17:17:49.280682+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"balance\": \"0\",\n"} +{"Time":"2020-04-21T17:17:49.280687+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"walletReference\": \"insolar:1AnVS_smwGhlnEFBgtwdCRpvoi-72-RJ1gMwOLQL8wrw\",\n"} +{"Time":"2020-04-21T17:17:49.280692+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"accountReference\": \"insolar:1AnVS_hyIbGR63YFBZt3BkjBnxI-1uAPlUlHeXtNWyFY\",\n"} +{"Time":"2020-04-21T17:17:49.280697+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"migrationAddress\": \"0xfd60f97e8b4f3a2bce9a8c84e230587ce3dbb108\",\n"} +{"Time":"2020-04-21T17:17:49.280702+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" \"error\": null\n"} +{"Time":"2020-04-21T17:17:49.280707+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.280713+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByMigrationAddress_Success","Elapsed":9.88} +{"Time":"2020-04-21T17:17:49.280721+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail"} +{"Time":"2020-04-21T17:17:49.280727+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Output":"=== RUN TestMemberMigration_GetByRandomAddress_Fail\n"} +{"Time":"2020-04-21T17:17:49.349777+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Output":"--- PASS: TestMemberMigration_GetByRandomAddress_Fail (0.07s)\n"} +{"Time":"2020-04-21T17:17:49.349795+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Output":" member_test.go:91: C1630 Ошибка получения мембера по миграционному адресу, если передан рандомный адрес\n"} +{"Time":"2020-04-21T17:17:49.349812+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Output":" member_test.go:94: Get member by ref 0x00000000000000000000000000000000000000000\n"} +{"Time":"2020-04-21T17:17:49.349816+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:49.34982+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/member/0x00000000000000000000000000000000000000000\n"} +{"Time":"2020-04-21T17:17:49.349823+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:49.349827+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.34983+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:49.349833+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:49.349836+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Output":" apilogger.go:54: http status: 204 No Content\n"} +{"Time":"2020-04-21T17:17:49.349839+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:49.349843+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.34985+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Output":" \"reference\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.349854+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Output":" \"balance\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.349858+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Output":" \"walletReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.349861+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Output":" \"accountReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.349864+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Output":" \"error\": null\n"} +{"Time":"2020-04-21T17:17:49.349867+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.349871+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMigration_GetByRandomAddress_Fail","Elapsed":0.07} +{"Time":"2020-04-21T17:17:49.349877+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance"} +{"Time":"2020-04-21T17:17:49.34988+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":"=== RUN TestGetMemberCheckBalance\n"} +{"Time":"2020-04-21T17:17:49.510808+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":"--- FAIL: TestGetMemberCheckBalance (0.16s)\n"} +{"Time":"2020-04-21T17:17:49.510828+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" member_test.go:102: C842\tУспешное получение мембера, если он был создан через createMember + трансфер от другого мембера, проверка балланса\n"} +{"Time":"2020-04-21T17:17:49.51084+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:49.510854+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" insolar_api_wrapper.go:126: Received seed: mRU3At06asAYxtJOiWOmvNcnRd0mvEUn+mFc/klzjl8=\n"} +{"Time":"2020-04-21T17:17:49.51086+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:49.510863+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:49.510867+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:49.510871+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.510874+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.510878+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:49.510882+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:49.510885+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.510889+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:49.510893+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"id\": 22,\n"} +{"Time":"2020-04-21T17:17:49.510898+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:49.510902+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.510905+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:49.510909+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:49.510913+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:49.510916+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.51092+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:49.510924+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"id\": 22,\n"} +{"Time":"2020-04-21T17:17:49.510929+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:49.510936+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"seed\": \"mRU3At06asAYxtJOiWOmvNcnRd0mvEUn+mFc/klzjl8=\"\n"} +{"Time":"2020-04-21T17:17:49.510943+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.510949+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:49.510953+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:49.510958+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.510964+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:49.51097+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.510974+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:49.510977+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:49.510981+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.510984+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.510987+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:49.510991+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:49.510994+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:49.510998+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:49.511001+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.511004+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:41: -H Digest: [SHA-256=J7B926O0hI7XhE4J4XoVyBHMPSKZtRcV9nOmF8D5BGM=]\n"} +{"Time":"2020-04-21T17:17:49.511008+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:49.511011+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEUCICteW4bbE1qrGjhPuADcnJmZRgW0i1q3JwwGel232F7GAiEA/QWIJsMrNOurrh+qJtM0Q0+11vHXbKmyXNZRPo6EiQk=]\n"} +{"Time":"2020-04-21T17:17:49.511017+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.511021+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:49.511026+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.511058+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:49.511063+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"id\": 23,\n"} +{"Time":"2020-04-21T17:17:49.511067+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:49.51107+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:49.511076+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"seed\": \"mRU3At06asAYxtJOiWOmvNcnRd0mvEUn+mFc/klzjl8=\",\n"} +{"Time":"2020-04-21T17:17:49.51109+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:17:49.511096+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEH1pUVSTTDdzc/x6I/ttYXXKfakYw\\n7hM+0E5mRx1jyMwxIub3sXKgI0oQ0SoTxgq62kDfz+S3wo4TJgOonoGHQA==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:49.511101+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.511104+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.511107+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:49.511114+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:49.511118+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:49.511121+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.511124+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:49.511127+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"id\": 23,\n"} +{"Time":"2020-04-21T17:17:49.511131+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:49.511134+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:49.511137+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:49.511141+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.511144+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.511148+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:49.511151+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.511154+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:49.511157+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:49.511161+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.511173+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"traceID\": \"ba45fddbd80c2f65dabb4f05c87ddaaf\",\n"} +{"Time":"2020-04-21T17:17:49.511177+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:49.51118+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:49.511184+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" ]\n"} +{"Time":"2020-04-21T17:17:49.511186+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.511189+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:49.511193+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:49.511196+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.511199+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.511202+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:49.511205+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:49.511208+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \t \t\t\t\tinsolar_api_wrapper.go:159\n"} +{"Time":"2020-04-21T17:17:49.511212+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \t \t\t\t\tmember_test.go:103\n"} +{"Time":"2020-04-21T17:17:49.511215+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:49.511218+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \tTest: \tTestGetMemberCheckBalance\n"} +{"Time":"2020-04-21T17:17:49.511222+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:49.511227+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberCheckBalance","Elapsed":0.16} +{"Time":"2020-04-21T17:17:49.511232+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDeposit"} +{"Time":"2020-04-21T17:17:49.511235+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDeposit","Output":"=== RUN TestGetMemberWithDeposit\n"} +{"Time":"2020-04-21T17:17:49.573937+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDeposit","Output":"--- FAIL: TestGetMemberWithDeposit (0.06s)\n"} +{"Time":"2020-04-21T17:17:49.573963+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDeposit","Output":" member_test.go:130: C926\tУспешное получение мембера c депозитом, проверка значений депозита по полям\n"} +{"Time":"2020-04-21T17:17:49.573973+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDeposit","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:17:49.573978+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDeposit","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:17:49.573984+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDeposit","Output":" \t \t\t\t\tmember_test.go:131\n"} +{"Time":"2020-04-21T17:17:49.57399+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDeposit","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:17:49.573995+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDeposit","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:17:49.574+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDeposit","Output":" \tTest: \tTestGetMemberWithDeposit\n"} +{"Time":"2020-04-21T17:17:49.574006+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDeposit","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:17:49.574014+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDeposit","Elapsed":0.06} +{"Time":"2020-04-21T17:17:49.574022+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDepositDifferentMigrationAmount"} +{"Time":"2020-04-21T17:17:49.574028+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDepositDifferentMigrationAmount","Output":"=== RUN TestGetMemberWithDepositDifferentMigrationAmount\n"} +{"Time":"2020-04-21T17:17:49.637701+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDepositDifferentMigrationAmount","Output":"--- FAIL: TestGetMemberWithDepositDifferentMigrationAmount (0.06s)\n"} +{"Time":"2020-04-21T17:17:49.63773+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDepositDifferentMigrationAmount","Output":" member_test.go:208: C927 Успешное подтверждение депозита с различными значениями суммы от демонов\n"} +{"Time":"2020-04-21T17:17:49.637747+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDepositDifferentMigrationAmount","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:17:49.637751+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDepositDifferentMigrationAmount","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:17:49.63777+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDepositDifferentMigrationAmount","Output":" \t \t\t\t\tmember_test.go:209\n"} +{"Time":"2020-04-21T17:17:49.637774+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDepositDifferentMigrationAmount","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:17:49.637778+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDepositDifferentMigrationAmount","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:17:49.637781+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDepositDifferentMigrationAmount","Output":" \tTest: \tTestGetMemberWithDepositDifferentMigrationAmount\n"} +{"Time":"2020-04-21T17:17:49.637785+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDepositDifferentMigrationAmount","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:17:49.637789+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberWithDepositDifferentMigrationAmount","Elapsed":0.06} +{"Time":"2020-04-21T17:17:49.637796+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl"} +{"Time":"2020-04-21T17:17:49.637799+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":"=== RUN TestGetMemberInvalidReferenceInUrl\n"} +{"Time":"2020-04-21T17:17:49.802656+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":"--- FAIL: TestGetMemberInvalidReferenceInUrl (0.16s)\n"} +{"Time":"2020-04-21T17:17:49.802693+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:49.802705+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" insolar_api_wrapper.go:126: Received seed: MAzjM63frrmG71QdttrrjmvGcZE6evDndQ/aCl3CFa4=\n"} +{"Time":"2020-04-21T17:17:49.802714+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:49.802722+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:49.802731+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:49.802738+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:49.802746+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.802754+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.802763+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:49.802771+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.802779+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:49.802787+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"id\": 26,\n"} +{"Time":"2020-04-21T17:17:49.802797+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:49.802805+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.802813+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:49.80282+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:49.802829+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:49.802837+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.802846+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:49.802854+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"id\": 26,\n"} +{"Time":"2020-04-21T17:17:49.802861+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:49.802879+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"seed\": \"MAzjM63frrmG71QdttrrjmvGcZE6evDndQ/aCl3CFa4=\"\n"} +{"Time":"2020-04-21T17:17:49.802887+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.802895+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:49.802902+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:49.80291+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.802918+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:49.802926+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.802933+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:49.802941+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:49.802948+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.802956+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.802963+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:49.802978+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:49.802986+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:49.802994+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:49.803001+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.803009+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:41: -H Digest: [SHA-256=SMSvO2fKRpMMaj88V+hxAzlXqBuDA809qZzdYIKNlJA=]\n"} +{"Time":"2020-04-21T17:17:49.803017+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEYCIQDvvgyZDhvYF2RiKtzpC9MhD3X1bsAXMGAamHAk3y14RAIhAMDuhrmJnJnexjfZDEH3spyWeNs0t6XeDi7p5SgzgNOE]\n"} +{"Time":"2020-04-21T17:17:49.803038+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:49.803046+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.803053+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:49.803061+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.803068+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:49.803075+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"id\": 27,\n"} +{"Time":"2020-04-21T17:17:49.803083+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:49.80309+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:49.803098+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"seed\": \"MAzjM63frrmG71QdttrrjmvGcZE6evDndQ/aCl3CFa4=\",\n"} +{"Time":"2020-04-21T17:17:49.803106+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"callSite\": \"member.migrationCreate\",\n"} +{"Time":"2020-04-21T17:17:49.803114+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAECAcVaZjbfPZZG9cFIIugxY90RgQj\\n47bPI7YI2SP19q4YfMRdazp0XXmL7gPHBEPJxkv7ARtL33O7n7wvYT/FMA==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:49.803123+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.803131+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.803138+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:49.803145+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:49.803153+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:49.80316+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.803167+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:49.803175+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"id\": 27,\n"} +{"Time":"2020-04-21T17:17:49.803182+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:49.80321+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:49.803215+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:49.80322+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.80323+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.803235+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:49.803239+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.803244+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:49.803249+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:49.803254+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.803259+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"traceID\": \"2d4eb5637292a92c4505b30e1bbbd49c\",\n"} +{"Time":"2020-04-21T17:17:49.803269+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:49.803274+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:49.803279+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" ]\n"} +{"Time":"2020-04-21T17:17:49.803284+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.803288+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:49.803293+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:49.803298+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.803303+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.803308+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:49.803312+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:49.803317+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \t \t\t\t\tinsolar_api_wrapper.go:239\n"} +{"Time":"2020-04-21T17:17:49.803322+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \t \t\t\t\tmember_test.go:251\n"} +{"Time":"2020-04-21T17:17:49.803327+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:49.803333+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \tTest: \tTestGetMemberInvalidReferenceInUrl\n"} +{"Time":"2020-04-21T17:17:49.803338+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:49.803348+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberInvalidReferenceInUrl","Elapsed":0.16} +{"Time":"2020-04-21T17:17:49.803356+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions"} +{"Time":"2020-04-21T17:17:49.803361+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":"=== RUN TestGetMemberTransactions\n"} +{"Time":"2020-04-21T17:17:49.947189+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":"--- FAIL: TestGetMemberTransactions (0.14s)\n"} +{"Time":"2020-04-21T17:17:49.947215+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" member_transactions_test.go:24: C852\tУспешное получение списка транзакций, если создано 2 мембера и 1 транзакция между ними, отображение транзакции у обоих\n"} +{"Time":"2020-04-21T17:17:49.947225+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:49.947244+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" insolar_api_wrapper.go:126: Received seed: RnqiCq7/5hc2rNkZqIS26lGq1UzH0W31Xn9r/qWRiU4=\n"} +{"Time":"2020-04-21T17:17:49.94725+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:49.947255+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:49.947266+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:49.947272+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.947277+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.947282+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:49.947287+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:49.947292+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.947297+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:49.947303+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"id\": 28,\n"} +{"Time":"2020-04-21T17:17:49.947308+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:49.947315+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.947329+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:49.947337+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:49.947343+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:49.94735+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.947358+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:49.947366+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"id\": 28,\n"} +{"Time":"2020-04-21T17:17:49.947406+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:49.947414+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"seed\": \"RnqiCq7/5hc2rNkZqIS26lGq1UzH0W31Xn9r/qWRiU4=\"\n"} +{"Time":"2020-04-21T17:17:49.947422+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.947429+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:49.947437+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:49.947445+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.947454+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:49.947462+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.947469+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:49.947474+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:49.947479+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.947483+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.947488+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:49.947493+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:49.947498+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:49.947523+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:49.947538+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.947544+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:49.947549+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:49.947564+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:41: -H Digest: [SHA-256=xVLtdBskDUU2GjYRQoMv6JhHVwLJX9HFnT94V2H/w1E=]\n"} +{"Time":"2020-04-21T17:17:49.94757+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEUCIAxLYwk2Ae7iF5DRJmeCgpAQNcVeyDkbu3uUbn1WWJzXAiEA0f+XBKikl8RhvGkftddFP/whzzYnSCYGrbvkUeEsJRg=]\n"} +{"Time":"2020-04-21T17:17:49.947577+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:49.947582+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.947587+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:49.947596+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"id\": 29,\n"} +{"Time":"2020-04-21T17:17:49.947601+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:49.947606+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:49.947611+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"seed\": \"RnqiCq7/5hc2rNkZqIS26lGq1UzH0W31Xn9r/qWRiU4=\",\n"} +{"Time":"2020-04-21T17:17:49.947622+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:17:49.947628+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEPwHB2ISu20dCNds2p+AL4NR5Zg57\\n5ql0/FqbYZ80e5nUqxgwiW6c4A+9uJDgHkBUgfW2mAP2253eB+WrLsU+IQ==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:49.947634+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.947639+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.947643+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:49.947648+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:49.947653+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:49.947657+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" {\n"} +{"Time":"2020-04-21T17:17:49.947662+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:49.947667+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"id\": 29,\n"} +{"Time":"2020-04-21T17:17:49.947672+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:49.947677+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:49.947682+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:49.947687+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.947691+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.947701+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:49.947706+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.947711+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:49.947716+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:49.947721+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:49.947726+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"traceID\": \"b64d64edb6a9e2adff41d030dd60158f\",\n"} +{"Time":"2020-04-21T17:17:49.947731+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:49.947736+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:49.947741+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" ]\n"} +{"Time":"2020-04-21T17:17:49.947746+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" },\n"} +{"Time":"2020-04-21T17:17:49.94775+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:49.947755+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:49.94776+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.947765+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" }\n"} +{"Time":"2020-04-21T17:17:49.94777+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:49.947774+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:49.947779+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \t \t\t\t\tinsolar_api_wrapper.go:159\n"} +{"Time":"2020-04-21T17:17:49.947784+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \t \t\t\t\tmember_transactions_test.go:25\n"} +{"Time":"2020-04-21T17:17:49.947789+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:49.947795+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \tTest: \tTestGetMemberTransactions\n"} +{"Time":"2020-04-21T17:17:49.9478+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:49.947806+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactions","Elapsed":0.14} +{"Time":"2020-04-21T17:17:49.947814+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactionsToDeposit"} +{"Time":"2020-04-21T17:17:49.947819+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactionsToDeposit","Output":"=== RUN TestGetMemberTransactionsToDeposit\n"} +{"Time":"2020-04-21T17:17:50.009799+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactionsToDeposit","Output":"--- FAIL: TestGetMemberTransactionsToDeposit (0.06s)\n"} +{"Time":"2020-04-21T17:17:50.009826+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactionsToDeposit","Output":" member_transactions_test.go:87: C853\tУспешное получение списка транзакций, если создан мембер migrationCreateMember + миграция(api), отображение транзакции перевода на депозит\n"} +{"Time":"2020-04-21T17:17:50.009836+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactionsToDeposit","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:17:50.009842+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactionsToDeposit","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:17:50.009847+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactionsToDeposit","Output":" \t \t\t\t\tmember_transactions_test.go:88\n"} +{"Time":"2020-04-21T17:17:50.009853+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactionsToDeposit","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:17:50.009858+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactionsToDeposit","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:17:50.009864+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactionsToDeposit","Output":" \tTest: \tTestGetMemberTransactionsToDeposit\n"} +{"Time":"2020-04-21T17:17:50.009869+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactionsToDeposit","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:17:50.00989+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetMemberTransactionsToDeposit","Elapsed":0.06} +{"Time":"2020-04-21T17:17:50.0099+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest"} +{"Time":"2020-04-21T17:17:50.009912+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest","Output":"=== RUN TestMemberTransactionsInvalidRefInRequest\n"} +{"Time":"2020-04-21T17:17:50.009991+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/empty_reference"} +{"Time":"2020-04-21T17:17:50.010012+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/empty_reference","Output":"=== RUN TestMemberTransactionsInvalidRefInRequest/empty_reference\n"} +{"Time":"2020-04-21T17:17:50.072092+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/random_string_in_reference"} +{"Time":"2020-04-21T17:17:50.07211+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/random_string_in_reference","Output":"=== RUN TestMemberTransactionsInvalidRefInRequest/random_string_in_reference\n"} +{"Time":"2020-04-21T17:17:50.146332+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/valid_format_in_reference,_not_found"} +{"Time":"2020-04-21T17:17:50.146373+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/valid_format_in_reference,_not_found","Output":"=== RUN TestMemberTransactionsInvalidRefInRequest/valid_format_in_reference,_not_found\n"} +{"Time":"2020-04-21T17:17:50.210706+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/1111_in_reference"} +{"Time":"2020-04-21T17:17:50.210741+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/1111_in_reference","Output":"=== RUN TestMemberTransactionsInvalidRefInRequest/1111_in_reference\n"} +{"Time":"2020-04-21T17:17:50.285756+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/0_in_reference"} +{"Time":"2020-04-21T17:17:50.285801+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/0_in_reference","Output":"=== RUN TestMemberTransactionsInvalidRefInRequest/0_in_reference\n"} +{"Time":"2020-04-21T17:17:50.350885+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_dot_in_reference"} +{"Time":"2020-04-21T17:17:50.350923+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_dot_in_reference","Output":"=== RUN TestMemberTransactionsInvalidRefInRequest/value_with_dot_in_reference\n"} +{"Time":"2020-04-21T17:17:50.448111+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_space_in_reference"} +{"Time":"2020-04-21T17:17:50.448146+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_space_in_reference","Output":"=== RUN TestMemberTransactionsInvalidRefInRequest/value_with_space_in_reference\n"} +{"Time":"2020-04-21T17:17:50.51392+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_circumflex_in_reference"} +{"Time":"2020-04-21T17:17:50.513946+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_circumflex_in_reference","Output":"=== RUN TestMemberTransactionsInvalidRefInRequest/value_with_circumflex_in_reference\n"} +{"Time":"2020-04-21T17:17:50.57744+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_asterisk_in_reference"} +{"Time":"2020-04-21T17:17:50.577475+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_asterisk_in_reference","Output":"=== RUN TestMemberTransactionsInvalidRefInRequest/value_with_asterisk_in_reference\n"} +{"Time":"2020-04-21T17:17:50.642379+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_ampersand_in_reference"} +{"Time":"2020-04-21T17:17:50.642401+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_ampersand_in_reference","Output":"=== RUN TestMemberTransactionsInvalidRefInRequest/value_with_ampersand_in_reference\n"} +{"Time":"2020-04-21T17:17:50.705255+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_percent_in_reference"} +{"Time":"2020-04-21T17:17:50.705293+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_percent_in_reference","Output":"=== RUN TestMemberTransactionsInvalidRefInRequest/value_with_percent_in_reference\n"} +{"Time":"2020-04-21T17:17:50.772825+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest","Output":"--- PASS: TestMemberTransactionsInvalidRefInRequest (0.76s)\n"} +{"Time":"2020-04-21T17:17:50.772865+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/empty_reference","Output":" --- PASS: TestMemberTransactionsInvalidRefInRequest/empty_reference (0.06s)\n"} +{"Time":"2020-04-21T17:17:50.772908+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/empty_reference","Elapsed":0.06} +{"Time":"2020-04-21T17:17:50.77294+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/random_string_in_reference","Output":" --- PASS: TestMemberTransactionsInvalidRefInRequest/random_string_in_reference (0.07s)\n"} +{"Time":"2020-04-21T17:17:50.772953+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/random_string_in_reference","Elapsed":0.07} +{"Time":"2020-04-21T17:17:50.772962+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/valid_format_in_reference,_not_found","Output":" --- PASS: TestMemberTransactionsInvalidRefInRequest/valid_format_in_reference,_not_found (0.06s)\n"} +{"Time":"2020-04-21T17:17:50.772971+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/valid_format_in_reference,_not_found","Elapsed":0.06} +{"Time":"2020-04-21T17:17:50.772979+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/1111_in_reference","Output":" --- PASS: TestMemberTransactionsInvalidRefInRequest/1111_in_reference (0.07s)\n"} +{"Time":"2020-04-21T17:17:50.772988+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/1111_in_reference","Elapsed":0.07} +{"Time":"2020-04-21T17:17:50.772996+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/0_in_reference","Output":" --- PASS: TestMemberTransactionsInvalidRefInRequest/0_in_reference (0.07s)\n"} +{"Time":"2020-04-21T17:17:50.773004+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/0_in_reference","Elapsed":0.07} +{"Time":"2020-04-21T17:17:50.773012+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_dot_in_reference","Output":" --- PASS: TestMemberTransactionsInvalidRefInRequest/value_with_dot_in_reference (0.10s)\n"} +{"Time":"2020-04-21T17:17:50.77302+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_dot_in_reference","Elapsed":0.1} +{"Time":"2020-04-21T17:17:50.773028+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_space_in_reference","Output":" --- PASS: TestMemberTransactionsInvalidRefInRequest/value_with_space_in_reference (0.07s)\n"} +{"Time":"2020-04-21T17:17:50.773037+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_space_in_reference","Elapsed":0.07} +{"Time":"2020-04-21T17:17:50.773044+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_circumflex_in_reference","Output":" --- PASS: TestMemberTransactionsInvalidRefInRequest/value_with_circumflex_in_reference (0.06s)\n"} +{"Time":"2020-04-21T17:17:50.773053+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_circumflex_in_reference","Elapsed":0.06} +{"Time":"2020-04-21T17:17:50.77306+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_asterisk_in_reference","Output":" --- PASS: TestMemberTransactionsInvalidRefInRequest/value_with_asterisk_in_reference (0.06s)\n"} +{"Time":"2020-04-21T17:17:50.773069+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_asterisk_in_reference","Elapsed":0.06} +{"Time":"2020-04-21T17:17:50.773076+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_ampersand_in_reference","Output":" --- PASS: TestMemberTransactionsInvalidRefInRequest/value_with_ampersand_in_reference (0.06s)\n"} +{"Time":"2020-04-21T17:17:50.773085+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_ampersand_in_reference","Elapsed":0.06} +{"Time":"2020-04-21T17:17:50.773092+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_percent_in_reference","Output":" --- PASS: TestMemberTransactionsInvalidRefInRequest/value_with_percent_in_reference (0.07s)\n"} +{"Time":"2020-04-21T17:17:50.773101+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest/value_with_percent_in_reference","Elapsed":0.07} +{"Time":"2020-04-21T17:17:50.773108+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsInvalidRefInRequest","Elapsed":0.76} +{"Time":"2020-04-21T17:17:50.773116+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse"} +{"Time":"2020-04-21T17:17:50.773124+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":"=== RUN TestMemberTransactionsEmptyResponse\n"} +{"Time":"2020-04-21T17:17:50.933548+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":"--- FAIL: TestMemberTransactionsEmptyResponse (0.16s)\n"} +{"Time":"2020-04-21T17:17:50.933598+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" member_transactions_test.go:159: C902\tУспешное получение списка транзакций пользователя, если транзакций не было (пустой список)\n"} +{"Time":"2020-04-21T17:17:50.933614+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:50.933623+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" insolar_api_wrapper.go:126: Received seed: 3baW3oQAXi9EbJlczzQCgJkya4kJN5IlSZl1Epds94g=\n"} +{"Time":"2020-04-21T17:17:50.933631+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:50.933639+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:50.933647+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:50.933655+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:50.933663+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:50.933671+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:50.933679+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:50.933687+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" {\n"} +{"Time":"2020-04-21T17:17:50.933695+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:50.933704+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"id\": 31,\n"} +{"Time":"2020-04-21T17:17:50.933712+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:50.93372+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" }\n"} +{"Time":"2020-04-21T17:17:50.933745+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:50.933753+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:50.93376+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:50.933768+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" {\n"} +{"Time":"2020-04-21T17:17:50.933775+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:50.933783+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"id\": 31,\n"} +{"Time":"2020-04-21T17:17:50.93379+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:50.933799+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"seed\": \"3baW3oQAXi9EbJlczzQCgJkya4kJN5IlSZl1Epds94g=\"\n"} +{"Time":"2020-04-21T17:17:50.933807+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" },\n"} +{"Time":"2020-04-21T17:17:50.933814+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:50.933822+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:50.93383+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:50.933838+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:50.933846+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" },\n"} +{"Time":"2020-04-21T17:17:50.933853+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:50.933861+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:50.933869+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" }\n"} +{"Time":"2020-04-21T17:17:50.933876+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" }\n"} +{"Time":"2020-04-21T17:17:50.933891+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:50.933899+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:50.933907+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:50.933915+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:50.933923+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:50.93393+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:50.933938+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:41: -H Digest: [SHA-256=K748jMSU5zDJ9MAFKH5mm7ypu9tocMotp+6R4SdAQtw=]\n"} +{"Time":"2020-04-21T17:17:50.933946+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEUCIQDw/Ibi/VZPe3U7jDN9GrsHPszx4k/m/NSn8GV6VnYz3AIge1tIkSW+L2CVXmCQKUkwC7o5TfftRU3wSKfX4G7puzM=]\n"} +{"Time":"2020-04-21T17:17:50.933955+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:50.933962+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:50.93397+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" {\n"} +{"Time":"2020-04-21T17:17:50.933977+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:50.933984+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"id\": 32,\n"} +{"Time":"2020-04-21T17:17:50.933999+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:50.934007+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:50.934014+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"seed\": \"3baW3oQAXi9EbJlczzQCgJkya4kJN5IlSZl1Epds94g=\",\n"} +{"Time":"2020-04-21T17:17:50.934023+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"callSite\": \"member.migrationCreate\",\n"} +{"Time":"2020-04-21T17:17:50.934032+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEWV+D0J8JnwmUafle8dp4gUnjDTEq\\nBKfh9NT2RiDKlqgp+A5q698lx0wBo47MxFGDOeqtRKrsAeAlbcaHbGkvIg==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:50.934059+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" }\n"} +{"Time":"2020-04-21T17:17:50.934064+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" }\n"} +{"Time":"2020-04-21T17:17:50.934069+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:50.934076+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:50.934081+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:50.934085+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" {\n"} +{"Time":"2020-04-21T17:17:50.93409+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:50.934095+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"id\": 32,\n"} +{"Time":"2020-04-21T17:17:50.934102+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:50.934111+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:50.934117+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:50.934122+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" },\n"} +{"Time":"2020-04-21T17:17:50.934126+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:50.934132+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:50.934137+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" },\n"} +{"Time":"2020-04-21T17:17:50.934141+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:50.934146+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:50.934151+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:50.934156+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"traceID\": \"b34d7635c52bd70378d42adf0453eb9b\",\n"} +{"Time":"2020-04-21T17:17:50.934161+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:50.934166+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:50.934171+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" ]\n"} +{"Time":"2020-04-21T17:17:50.934176+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" },\n"} +{"Time":"2020-04-21T17:17:50.93418+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:50.934185+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:50.93419+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" }\n"} +{"Time":"2020-04-21T17:17:50.934195+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" }\n"} +{"Time":"2020-04-21T17:17:50.9342+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:50.934205+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:50.93421+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \t \t\t\t\tinsolar_api_wrapper.go:239\n"} +{"Time":"2020-04-21T17:17:50.934215+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \t \t\t\t\tmember_transactions_test.go:160\n"} +{"Time":"2020-04-21T17:17:50.93422+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:50.934225+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \tTest: \tTestMemberTransactionsEmptyResponse\n"} +{"Time":"2020-04-21T17:17:50.93423+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:50.934237+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberTransactionsEmptyResponse","Elapsed":0.16} +{"Time":"2020-04-21T17:17:50.934244+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers"} +{"Time":"2020-04-21T17:17:50.934249+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":"=== RUN TestTransactionBetweenMembers\n"} +{"Time":"2020-04-21T17:17:51.074362+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":"--- FAIL: TestTransactionBetweenMembers (0.14s)\n"} +{"Time":"2020-04-21T17:17:51.074399+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" transaction_test.go:40: C856\tУспешное получение транзакции, если transfer между 2-мя мемберами\n"} +{"Time":"2020-04-21T17:17:51.074436+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:51.074446+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" insolar_api_wrapper.go:126: Received seed: OvEP+JB4eEbo8rP21VseLmoKkAGKeBmGIQdaIKx4qEA=\n"} +{"Time":"2020-04-21T17:17:51.074461+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:51.074469+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:51.074477+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:51.074485+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:51.074492+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:51.0745+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:51.074508+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:51.074516+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" {\n"} +{"Time":"2020-04-21T17:17:51.074523+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:51.074531+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"id\": 33,\n"} +{"Time":"2020-04-21T17:17:51.074539+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:51.074547+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" }\n"} +{"Time":"2020-04-21T17:17:51.074554+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:51.074562+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:51.074569+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:51.074576+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" {\n"} +{"Time":"2020-04-21T17:17:51.074584+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:51.074592+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"id\": 33,\n"} +{"Time":"2020-04-21T17:17:51.074599+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:51.074607+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"seed\": \"OvEP+JB4eEbo8rP21VseLmoKkAGKeBmGIQdaIKx4qEA=\"\n"} +{"Time":"2020-04-21T17:17:51.074615+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" },\n"} +{"Time":"2020-04-21T17:17:51.074622+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:51.07463+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:51.074638+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:51.074646+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:51.074674+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" },\n"} +{"Time":"2020-04-21T17:17:51.074682+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:51.07469+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:51.074698+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" }\n"} +{"Time":"2020-04-21T17:17:51.074705+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" }\n"} +{"Time":"2020-04-21T17:17:51.074713+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:51.07472+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:51.074727+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:51.074735+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:51.074743+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:51.07475+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:41: -H Digest: [SHA-256=J1Mkhecfe97BDv38O36a1DOTqdGIvqSV/bvVWmUOaog=]\n"} +{"Time":"2020-04-21T17:17:51.074758+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEUCIQCbj3PF63JmxTGrtE55McU7oyF7UP1VBcSx4IIN7w8QEgIgIQLTGWx9PzWjK9JbhhVXdCJr1PLbtPX9s2fr3PHITIo=]\n"} +{"Time":"2020-04-21T17:17:51.074768+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:51.074775+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:51.074782+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:51.07479+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" {\n"} +{"Time":"2020-04-21T17:17:51.074797+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:51.074805+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"id\": 34,\n"} +{"Time":"2020-04-21T17:17:51.074812+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:51.07482+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:51.074827+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"seed\": \"OvEP+JB4eEbo8rP21VseLmoKkAGKeBmGIQdaIKx4qEA=\",\n"} +{"Time":"2020-04-21T17:17:51.074836+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:17:51.074844+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEXSVnoVw32dEl2UVNbDxelh2qFDE1\\n8GHmRHaYUjlcMScYRIuBFIBQ9DBQ/JlFkSmnMBdH6ZwnXrqwpOlXSBvQ/g==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:51.074854+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" }\n"} +{"Time":"2020-04-21T17:17:51.074879+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" }\n"} +{"Time":"2020-04-21T17:17:51.074884+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:51.074918+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:51.074926+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:51.074933+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" {\n"} +{"Time":"2020-04-21T17:17:51.074989+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:51.075005+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"id\": 34,\n"} +{"Time":"2020-04-21T17:17:51.075015+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:51.075022+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:51.07503+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:51.075039+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" },\n"} +{"Time":"2020-04-21T17:17:51.075046+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:51.075055+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:51.075062+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" },\n"} +{"Time":"2020-04-21T17:17:51.07507+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:51.075078+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:51.075085+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:51.075094+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"traceID\": \"a1401816c9026e5e864acf72b2496295\",\n"} +{"Time":"2020-04-21T17:17:51.075102+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:51.07511+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:51.075118+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" ]\n"} +{"Time":"2020-04-21T17:17:51.075146+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" },\n"} +{"Time":"2020-04-21T17:17:51.075163+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:51.075172+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:51.075187+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" }\n"} +{"Time":"2020-04-21T17:17:51.07522+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" }\n"} +{"Time":"2020-04-21T17:17:51.075228+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:51.075236+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:51.075243+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \t \t\t\t\tinsolar_api_wrapper.go:159\n"} +{"Time":"2020-04-21T17:17:51.075258+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \t \t\t\t\ttransaction_test.go:42\n"} +{"Time":"2020-04-21T17:17:51.075266+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:51.075274+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \tTest: \tTestTransactionBetweenMembers\n"} +{"Time":"2020-04-21T17:17:51.075282+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:51.075292+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembers","Elapsed":0.14} +{"Time":"2020-04-21T17:17:51.075302+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDeposit"} +{"Time":"2020-04-21T17:17:51.075311+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDeposit","Output":"=== RUN TestTransactionToDeposit\n"} +{"Time":"2020-04-21T17:17:51.142645+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDeposit","Output":"--- FAIL: TestTransactionToDeposit (0.07s)\n"} +{"Time":"2020-04-21T17:17:51.14267+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDeposit","Output":" transaction_test.go:86: C857\tУспешное получение транзакции, если transfer на депозит(миграция)\n"} +{"Time":"2020-04-21T17:17:51.142677+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDeposit","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:17:51.142682+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDeposit","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:17:51.142686+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDeposit","Output":" \t \t\t\t\ttransaction_test.go:89\n"} +{"Time":"2020-04-21T17:17:51.14269+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDeposit","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:17:51.142694+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDeposit","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:17:51.142698+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDeposit","Output":" \tTest: \tTestTransactionToDeposit\n"} +{"Time":"2020-04-21T17:17:51.142703+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDeposit","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:17:51.142707+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDeposit","Elapsed":0.07} +{"Time":"2020-04-21T17:17:51.142715+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDepositWithInvalidAmount"} +{"Time":"2020-04-21T17:17:51.142719+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDepositWithInvalidAmount","Output":"=== RUN TestTransactionToDepositWithInvalidAmount\n"} +{"Time":"2020-04-21T17:17:51.207821+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDepositWithInvalidAmount","Output":"--- FAIL: TestTransactionToDepositWithInvalidAmount (0.07s)\n"} +{"Time":"2020-04-21T17:17:51.207857+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDepositWithInvalidAmount","Output":" transaction_test.go:133: C859\tУспешное получение транзакции, если transfer депозита на аккаунт с невалидной суммой - транзакция отклонена\n"} +{"Time":"2020-04-21T17:17:51.207871+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDepositWithInvalidAmount","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:17:51.207887+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDepositWithInvalidAmount","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:17:51.207896+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDepositWithInvalidAmount","Output":" \t \t\t\t\ttransaction_test.go:134\n"} +{"Time":"2020-04-21T17:17:51.207904+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDepositWithInvalidAmount","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:17:51.207913+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDepositWithInvalidAmount","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:17:51.207922+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDepositWithInvalidAmount","Output":" \tTest: \tTestTransactionToDepositWithInvalidAmount\n"} +{"Time":"2020-04-21T17:17:51.20793+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDepositWithInvalidAmount","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:17:51.207948+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionToDepositWithInvalidAmount","Elapsed":0.07} +{"Time":"2020-04-21T17:17:51.207963+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest"} +{"Time":"2020-04-21T17:17:51.207972+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest","Output":"=== RUN TestTransactionInvalidTxIDsInRequest\n"} +{"Time":"2020-04-21T17:17:51.208157+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/empty_txID"} +{"Time":"2020-04-21T17:17:51.208183+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/empty_txID","Output":"=== RUN TestTransactionInvalidTxIDsInRequest/empty_txID\n"} +{"Time":"2020-04-21T17:17:51.272521+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/random_string_in_txID"} +{"Time":"2020-04-21T17:17:51.272556+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/random_string_in_txID","Output":"=== RUN TestTransactionInvalidTxIDsInRequest/random_string_in_txID\n"} +{"Time":"2020-04-21T17:17:51.339856+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/1111_in_txID"} +{"Time":"2020-04-21T17:17:51.339894+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/1111_in_txID","Output":"=== RUN TestTransactionInvalidTxIDsInRequest/1111_in_txID\n"} +{"Time":"2020-04-21T17:17:51.402855+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/0_in_txID"} +{"Time":"2020-04-21T17:17:51.402894+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/0_in_txID","Output":"=== RUN TestTransactionInvalidTxIDsInRequest/0_in_txID\n"} +{"Time":"2020-04-21T17:17:51.507046+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_dot_in_txID"} +{"Time":"2020-04-21T17:17:51.507076+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_dot_in_txID","Output":"=== RUN TestTransactionInvalidTxIDsInRequest/value_with_dot_in_txID\n"} +{"Time":"2020-04-21T17:17:51.570906+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_space_in_txID"} +{"Time":"2020-04-21T17:17:51.570943+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_space_in_txID","Output":"=== RUN TestTransactionInvalidTxIDsInRequest/value_with_space_in_txID\n"} +{"Time":"2020-04-21T17:17:51.634856+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_circumflex_in_txID"} +{"Time":"2020-04-21T17:17:51.634881+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_circumflex_in_txID","Output":"=== RUN TestTransactionInvalidTxIDsInRequest/value_with_circumflex_in_txID\n"} +{"Time":"2020-04-21T17:17:51.698907+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_asterisk_in_txID"} +{"Time":"2020-04-21T17:17:51.698949+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_asterisk_in_txID","Output":"=== RUN TestTransactionInvalidTxIDsInRequest/value_with_asterisk_in_txID\n"} +{"Time":"2020-04-21T17:17:51.761071+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_ampersand_in_txID"} +{"Time":"2020-04-21T17:17:51.761107+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_ampersand_in_txID","Output":"=== RUN TestTransactionInvalidTxIDsInRequest/value_with_ampersand_in_txID\n"} +{"Time":"2020-04-21T17:17:51.830029+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_percent_in_txID"} +{"Time":"2020-04-21T17:17:51.830068+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_percent_in_txID","Output":"=== RUN TestTransactionInvalidTxIDsInRequest/value_with_percent_in_txID\n"} +{"Time":"2020-04-21T17:17:51.894146+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/not_exist"} +{"Time":"2020-04-21T17:17:51.894173+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/not_exist","Output":"=== RUN TestTransactionInvalidTxIDsInRequest/not_exist\n"} +{"Time":"2020-04-21T17:17:51.999793+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest","Output":"--- PASS: TestTransactionInvalidTxIDsInRequest (0.79s)\n"} +{"Time":"2020-04-21T17:17:51.999834+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/empty_txID","Output":" --- PASS: TestTransactionInvalidTxIDsInRequest/empty_txID (0.06s)\n"} +{"Time":"2020-04-21T17:17:51.999847+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/empty_txID","Elapsed":0.06} +{"Time":"2020-04-21T17:17:51.99986+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/random_string_in_txID","Output":" --- PASS: TestTransactionInvalidTxIDsInRequest/random_string_in_txID (0.07s)\n"} +{"Time":"2020-04-21T17:17:51.99987+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/random_string_in_txID","Elapsed":0.07} +{"Time":"2020-04-21T17:17:51.999878+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/1111_in_txID","Output":" --- PASS: TestTransactionInvalidTxIDsInRequest/1111_in_txID (0.06s)\n"} +{"Time":"2020-04-21T17:17:51.999901+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/1111_in_txID","Elapsed":0.06} +{"Time":"2020-04-21T17:17:51.99991+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/0_in_txID","Output":" --- PASS: TestTransactionInvalidTxIDsInRequest/0_in_txID (0.10s)\n"} +{"Time":"2020-04-21T17:17:51.999919+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/0_in_txID","Elapsed":0.1} +{"Time":"2020-04-21T17:17:51.999927+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_dot_in_txID","Output":" --- PASS: TestTransactionInvalidTxIDsInRequest/value_with_dot_in_txID (0.06s)\n"} +{"Time":"2020-04-21T17:17:51.999936+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_dot_in_txID","Elapsed":0.06} +{"Time":"2020-04-21T17:17:51.999943+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_space_in_txID","Output":" --- PASS: TestTransactionInvalidTxIDsInRequest/value_with_space_in_txID (0.06s)\n"} +{"Time":"2020-04-21T17:17:51.999953+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_space_in_txID","Elapsed":0.06} +{"Time":"2020-04-21T17:17:51.999961+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_circumflex_in_txID","Output":" --- PASS: TestTransactionInvalidTxIDsInRequest/value_with_circumflex_in_txID (0.06s)\n"} +{"Time":"2020-04-21T17:17:51.999971+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_circumflex_in_txID","Elapsed":0.06} +{"Time":"2020-04-21T17:17:51.999979+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_asterisk_in_txID","Output":" --- PASS: TestTransactionInvalidTxIDsInRequest/value_with_asterisk_in_txID (0.06s)\n"} +{"Time":"2020-04-21T17:17:51.999988+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_asterisk_in_txID","Elapsed":0.06} +{"Time":"2020-04-21T17:17:51.999996+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_ampersand_in_txID","Output":" --- PASS: TestTransactionInvalidTxIDsInRequest/value_with_ampersand_in_txID (0.07s)\n"} +{"Time":"2020-04-21T17:17:52.000005+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_ampersand_in_txID","Elapsed":0.07} +{"Time":"2020-04-21T17:17:52.000013+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_percent_in_txID","Output":" --- PASS: TestTransactionInvalidTxIDsInRequest/value_with_percent_in_txID (0.06s)\n"} +{"Time":"2020-04-21T17:17:52.000022+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/value_with_percent_in_txID","Elapsed":0.06} +{"Time":"2020-04-21T17:17:52.000029+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/not_exist","Output":" --- PASS: TestTransactionInvalidTxIDsInRequest/not_exist (0.11s)\n"} +{"Time":"2020-04-21T17:17:52.000038+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest/not_exist","Elapsed":0.11} +{"Time":"2020-04-21T17:17:52.000045+03:00","Action":"pass","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionInvalidTxIDsInRequest","Elapsed":0.79} +{"Time":"2020-04-21T17:17:52.000053+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros"} +{"Time":"2020-04-21T17:17:52.000061+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":"=== RUN TestTransactionBetweenMembersLeadingZeros\n"} +{"Time":"2020-04-21T17:17:52.33323+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":"--- FAIL: TestTransactionBetweenMembersLeadingZeros (0.33s)\n"} +{"Time":"2020-04-21T17:17:52.333256+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" transaction_test.go:189: C4816 Транзакция с amount = 000101\n"} +{"Time":"2020-04-21T17:17:52.333264+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:52.33327+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" insolar_api_wrapper.go:126: Received seed: 8dFx5DzHnXrejEbWAZjaDghnZT5ke6sUj0JTlUXYy3o=\n"} +{"Time":"2020-04-21T17:17:52.333289+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:52.333295+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:52.333301+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:52.333306+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:52.333312+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:52.333317+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:52.333322+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:52.333327+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" {\n"} +{"Time":"2020-04-21T17:17:52.333332+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:52.333338+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"id\": 37,\n"} +{"Time":"2020-04-21T17:17:52.333344+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:52.333354+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.333359+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:52.333364+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:52.333369+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:52.333374+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" {\n"} +{"Time":"2020-04-21T17:17:52.333379+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:52.333384+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"id\": 37,\n"} +{"Time":"2020-04-21T17:17:52.333389+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:52.333394+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"seed\": \"8dFx5DzHnXrejEbWAZjaDghnZT5ke6sUj0JTlUXYy3o=\"\n"} +{"Time":"2020-04-21T17:17:52.333428+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" },\n"} +{"Time":"2020-04-21T17:17:52.333445+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:52.333452+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:52.333458+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:52.333463+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:52.333468+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" },\n"} +{"Time":"2020-04-21T17:17:52.333488+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:52.333493+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:52.333498+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.333505+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.333521+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:52.333531+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:52.333539+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:52.333548+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:52.333556+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:52.333566+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:41: -H Digest: [SHA-256=fHjp+YnJEWPa1KVkgDrS0lorKZn2oRop276QLN/JHko=]\n"} +{"Time":"2020-04-21T17:17:52.333577+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEYCIQD41VRvgJ8c9GQ+w4SUTEStiMtXGmC/FzgFhChjbR7dMgIhALohmdBoC8OBzv1iykKMEneKkSVsco6zBdXJl7MRe6bz]\n"} +{"Time":"2020-04-21T17:17:52.333589+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:52.333598+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:52.333608+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:52.333613+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" {\n"} +{"Time":"2020-04-21T17:17:52.333618+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:52.333624+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"id\": 38,\n"} +{"Time":"2020-04-21T17:17:52.333637+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:52.333642+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:52.333647+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"seed\": \"8dFx5DzHnXrejEbWAZjaDghnZT5ke6sUj0JTlUXYy3o=\",\n"} +{"Time":"2020-04-21T17:17:52.333653+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"callSite\": \"member.migrationCreate\",\n"} +{"Time":"2020-04-21T17:17:52.333659+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEqgnEJOKnuoo2lF2NeWTV7OD9oYai\\nXUVQ41eoV8iM5JevURaz04xxnaMRIUURxQN/MLPewYjGKmwOvtQeugPDVQ==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:52.333665+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.33367+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.333675+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:52.333681+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:52.333691+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:52.333697+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" {\n"} +{"Time":"2020-04-21T17:17:52.333702+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:52.333708+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"id\": 38,\n"} +{"Time":"2020-04-21T17:17:52.333713+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:52.333718+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:52.333729+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:52.333735+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" },\n"} +{"Time":"2020-04-21T17:17:52.333739+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:52.333745+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:52.33375+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" },\n"} +{"Time":"2020-04-21T17:17:52.333754+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:52.333759+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:52.333764+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:52.33377+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"traceID\": \"1844206be648cf1b65e96206be74269a\",\n"} +{"Time":"2020-04-21T17:17:52.333775+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:52.33378+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:52.333785+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" ]\n"} +{"Time":"2020-04-21T17:17:52.33379+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" },\n"} +{"Time":"2020-04-21T17:17:52.333794+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:52.333799+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:52.333804+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.333809+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.333814+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:52.333819+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:52.333825+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \t \t\t\t\tinsolar_api_wrapper.go:239\n"} +{"Time":"2020-04-21T17:17:52.333831+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \t \t\t\t\ttransaction_test.go:190\n"} +{"Time":"2020-04-21T17:17:52.333844+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:52.33385+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \tTest: \tTestTransactionBetweenMembersLeadingZeros\n"} +{"Time":"2020-04-21T17:17:52.333855+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:52.333862+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestTransactionBetweenMembersLeadingZeros","Elapsed":0.33} +{"Time":"2020-04-21T17:17:52.333869+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer"} +{"Time":"2020-04-21T17:17:52.333874+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":"=== RUN TestMemberMoreBigAmountTransfer\n"} +{"Time":"2020-04-21T17:17:52.489431+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":"--- FAIL: TestMemberMoreBigAmountTransfer (0.16s)\n"} +{"Time":"2020-04-21T17:17:52.489469+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" transaction_test.go:200: C4815 Транзакция с amount = len(800)\n"} +{"Time":"2020-04-21T17:17:52.489481+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:52.48949+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" insolar_api_wrapper.go:126: Received seed: BZeQPPgyUtHfIyIpZxTo4yRFTZNJqI7aIhgZ0m905lU=\n"} +{"Time":"2020-04-21T17:17:52.489519+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:52.489524+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:52.489544+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:52.48955+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:52.489555+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:52.489561+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:52.489565+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:52.48957+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:52.489575+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:52.489581+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"id\": 39,\n"} +{"Time":"2020-04-21T17:17:52.489586+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:52.489591+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.489596+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:52.489602+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:52.489606+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:52.489611+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:52.489616+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:52.48962+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"id\": 39,\n"} +{"Time":"2020-04-21T17:17:52.489625+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:52.489646+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"seed\": \"BZeQPPgyUtHfIyIpZxTo4yRFTZNJqI7aIhgZ0m905lU=\"\n"} +{"Time":"2020-04-21T17:17:52.489653+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:52.489658+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:52.489663+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:52.489671+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:52.489682+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:52.489688+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:52.489692+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:52.489697+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:52.489702+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.489707+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.489712+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:52.489716+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:52.489721+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:52.489726+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:52.489731+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:52.489736+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:41: -H Digest: [SHA-256=k8WmGWUlqyDEr7JY/mP8mVGn/hcl6UdeEFkuhJ+4LFI=]\n"} +{"Time":"2020-04-21T17:17:52.489741+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEYCIQDyj910Gnw7PVU4bByY28r0ILem10c4NOzO+LiTeTiakAIhAPRA2O/JJA7DpaVshoa1DxlOQE5jcNGbLNfMQWP9MhKg]\n"} +{"Time":"2020-04-21T17:17:52.489747+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:52.489751+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:52.489756+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:52.489761+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:52.489766+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:52.489771+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"id\": 40,\n"} +{"Time":"2020-04-21T17:17:52.489781+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:52.489786+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:52.489791+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"seed\": \"BZeQPPgyUtHfIyIpZxTo4yRFTZNJqI7aIhgZ0m905lU=\",\n"} +{"Time":"2020-04-21T17:17:52.489796+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:17:52.489801+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAErl7BQ+z/f52Gyau5yMRJbCPeumO6\\n8AFgMN3H6TOyvP5d86/dgYaFvDA1qFus7t/kcF1se0aJwwScF6nQM+QgIg==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:52.489807+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.489812+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.489817+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:52.489821+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:52.489826+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:52.489831+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:17:52.48984+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:52.48985+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"id\": 40,\n"} +{"Time":"2020-04-21T17:17:52.489855+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:52.48986+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:52.489865+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:52.48987+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:52.489875+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:52.48988+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:52.489884+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:52.489889+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:52.489894+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:52.489899+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:52.489904+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"traceID\": \"be426f727fbeed525c81587178a59f94\",\n"} +{"Time":"2020-04-21T17:17:52.489909+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:52.489914+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:52.489919+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" ]\n"} +{"Time":"2020-04-21T17:17:52.489923+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" },\n"} +{"Time":"2020-04-21T17:17:52.489928+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:52.489933+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:52.489938+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.489943+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.489947+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:52.489952+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:52.489957+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \t \t\t\t\tinsolar_api_wrapper.go:159\n"} +{"Time":"2020-04-21T17:17:52.489962+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \t \t\t\t\ttransaction_test.go:201\n"} +{"Time":"2020-04-21T17:17:52.489967+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:52.489972+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \tTest: \tTestMemberMoreBigAmountTransfer\n"} +{"Time":"2020-04-21T17:17:52.489977+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:52.489983+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestMemberMoreBigAmountTransfer","Elapsed":0.16} +{"Time":"2020-04-21T17:17:52.48999+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef"} +{"Time":"2020-04-21T17:17:52.489995+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":"=== RUN TestGetFailedTx_nonexistentMemRef\n"} +{"Time":"2020-04-21T17:17:52.63852+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":"--- FAIL: TestGetFailedTx_nonexistentMemRef (0.15s)\n"} +{"Time":"2020-04-21T17:17:52.638542+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:52.638548+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" insolar_api_wrapper.go:126: Received seed: RqUhT4vaVPWS+K55pHw4hoMOWIu2CM3+8onPCSq2uvI=\n"} +{"Time":"2020-04-21T17:17:52.638553+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:52.638573+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:52.638582+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:52.638586+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:52.63859+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:52.638617+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:52.638628+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:52.638635+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" {\n"} +{"Time":"2020-04-21T17:17:52.638639+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:52.638643+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"id\": 41,\n"} +{"Time":"2020-04-21T17:17:52.638648+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:52.638652+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.638656+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:52.63866+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:52.638664+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:52.638668+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" {\n"} +{"Time":"2020-04-21T17:17:52.638683+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:52.638688+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"id\": 41,\n"} +{"Time":"2020-04-21T17:17:52.638696+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:52.638701+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"seed\": \"RqUhT4vaVPWS+K55pHw4hoMOWIu2CM3+8onPCSq2uvI=\"\n"} +{"Time":"2020-04-21T17:17:52.638705+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" },\n"} +{"Time":"2020-04-21T17:17:52.63871+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:52.638714+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:52.638718+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:52.638722+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:52.638728+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" },\n"} +{"Time":"2020-04-21T17:17:52.638732+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:52.638737+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:52.638742+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.638745+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.638749+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:52.638753+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:52.638757+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:52.638762+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:52.638766+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:52.638771+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:52.638775+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:41: -H Digest: [SHA-256=PYI3Cu5d4E2bqK/hSYABn8s3zrTcq/MCgUI6XEJiAI4=]\n"} +{"Time":"2020-04-21T17:17:52.638779+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEUCIEK/mOt5llfZivBhRal0IhqmMMwYTJ0toHu5sA3OMFs1AiEAtESTscMzPmavPL1rEvS27P4SGgI383FbqP3t6i4l/94=]\n"} +{"Time":"2020-04-21T17:17:52.638788+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:52.638793+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:52.638797+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" {\n"} +{"Time":"2020-04-21T17:17:52.638801+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:52.638809+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"id\": 42,\n"} +{"Time":"2020-04-21T17:17:52.638813+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:52.638825+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:52.638829+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"seed\": \"RqUhT4vaVPWS+K55pHw4hoMOWIu2CM3+8onPCSq2uvI=\",\n"} +{"Time":"2020-04-21T17:17:52.638833+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:17:52.638837+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEXdVoqpW5vdbNSzJa9VfXbaQNyDPG\\n3Fau554wlCTK7jgQsJMNOl5oLjeMb+kPrYvLn71HQkheURnbcXYn3h1H1A==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:52.638842+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.638846+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.63885+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:52.638853+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:52.638857+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:52.638861+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" {\n"} +{"Time":"2020-04-21T17:17:52.638865+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:52.638868+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"id\": 42,\n"} +{"Time":"2020-04-21T17:17:52.638872+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:52.638876+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:52.63888+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:52.638884+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" },\n"} +{"Time":"2020-04-21T17:17:52.638887+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:52.638891+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:52.638895+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" },\n"} +{"Time":"2020-04-21T17:17:52.638899+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:52.638903+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:52.638907+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:52.638911+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"traceID\": \"df42c6e67eca52777a9f448eaa978283\",\n"} +{"Time":"2020-04-21T17:17:52.638915+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:52.638925+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:52.638929+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" ]\n"} +{"Time":"2020-04-21T17:17:52.638933+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" },\n"} +{"Time":"2020-04-21T17:17:52.638936+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:52.63894+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:52.638944+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.638948+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" }\n"} +{"Time":"2020-04-21T17:17:52.638952+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:52.638956+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:52.63896+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \t \t\t\t\tinsolar_api_wrapper.go:159\n"} +{"Time":"2020-04-21T17:17:52.638964+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \t \t\t\t\ttransaction_test.go:215\n"} +{"Time":"2020-04-21T17:17:52.638968+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:52.638972+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \tTest: \tTestGetFailedTx_nonexistentMemRef\n"} +{"Time":"2020-04-21T17:17:52.638976+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:52.638982+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef","Elapsed":0.15} +{"Time":"2020-04-21T17:17:52.638988+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp"} +{"Time":"2020-04-21T17:17:52.638991+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":"=== RUN TestGetFailedTx_nonexistentMemRef_byRegexp\n"} +{"Time":"2020-04-21T17:17:53.30851+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":"--- FAIL: TestGetFailedTx_nonexistentMemRef_byRegexp (0.67s)\n"} +{"Time":"2020-04-21T17:17:53.308551+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:53.308563+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" insolar_api_wrapper.go:126: Received seed: NMTeuRyx243zLofmgl8Dv0ovhdhh5VJvl5mzIhTB3fY=\n"} +{"Time":"2020-04-21T17:17:53.308589+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:53.308599+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:53.308607+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:53.308615+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:53.308623+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:53.308632+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:53.30864+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:53.308648+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" {\n"} +{"Time":"2020-04-21T17:17:53.308676+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:53.308687+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"id\": 43,\n"} +{"Time":"2020-04-21T17:17:53.308696+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:53.308705+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" }\n"} +{"Time":"2020-04-21T17:17:53.308713+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:53.308722+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:53.308731+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:53.308738+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" {\n"} +{"Time":"2020-04-21T17:17:53.308746+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:53.308754+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"id\": 43,\n"} +{"Time":"2020-04-21T17:17:53.308762+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:53.308769+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"seed\": \"NMTeuRyx243zLofmgl8Dv0ovhdhh5VJvl5mzIhTB3fY=\"\n"} +{"Time":"2020-04-21T17:17:53.308778+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" },\n"} +{"Time":"2020-04-21T17:17:53.308786+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:53.308794+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:53.308803+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:53.308811+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:53.308819+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" },\n"} +{"Time":"2020-04-21T17:17:53.30883+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:53.308837+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:53.308845+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" }\n"} +{"Time":"2020-04-21T17:17:53.308853+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" }\n"} +{"Time":"2020-04-21T17:17:53.30886+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:53.308867+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:53.308875+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:53.308883+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:53.308891+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEUCIQCcMn7571UgtDpAYAPwj5LWs/25NeYxlLDaxvnE81VicQIgGcpDGAhcoSacOidfCJsFYp5iLLYG6j26Bcx/xeulpFg=]\n"} +{"Time":"2020-04-21T17:17:53.3089+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:53.308909+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:53.308917+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:41: -H Digest: [SHA-256=LRik7lW2/2hvy3jlkaxnjn1l1U3iKNRAorbfVDVOM08=]\n"} +{"Time":"2020-04-21T17:17:53.308926+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:53.30895+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:53.308956+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" {\n"} +{"Time":"2020-04-21T17:17:53.308961+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:53.308966+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"id\": 44,\n"} +{"Time":"2020-04-21T17:17:53.308971+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:53.308977+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:53.308982+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"seed\": \"NMTeuRyx243zLofmgl8Dv0ovhdhh5VJvl5mzIhTB3fY=\",\n"} +{"Time":"2020-04-21T17:17:53.308998+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:17:53.309005+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE+Vv1Oh0yP4/7LfiNq65QxBINARei\\ntIjxGGtCPCMqUpYuo2bRwKAWUwoN1Rox+T2zTo+7BFi4UwHEBcfz4YiloQ==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:53.309011+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" }\n"} +{"Time":"2020-04-21T17:17:53.309016+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" }\n"} +{"Time":"2020-04-21T17:17:53.30902+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:53.309025+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:53.309034+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:53.309039+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" {\n"} +{"Time":"2020-04-21T17:17:53.309044+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:53.309048+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"id\": 44,\n"} +{"Time":"2020-04-21T17:17:53.309053+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:53.309058+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:53.309063+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"reference\": \"insolar:1AnVTCOe6_6DLUjIJhlglrdMQ0--jkim4djoMYjz_HV8\"\n"} +{"Time":"2020-04-21T17:17:53.309068+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" },\n"} +{"Time":"2020-04-21T17:17:53.309073+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"requestReference\": \"insolar:1AnVTCLBLEfLPxm7oFp3yK502j1wy-eL-fQeIOPKPMSM.record\",\n"} +{"Time":"2020-04-21T17:17:53.309079+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"traceID\": \"e741810374e78bcd17ce73fdc7714586\"\n"} +{"Time":"2020-04-21T17:17:53.309084+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" },\n"} +{"Time":"2020-04-21T17:17:53.309089+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:53.309093+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:53.309098+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:53.309103+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:53.309108+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:53.309113+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" },\n"} +{"Time":"2020-04-21T17:17:53.309118+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:53.309123+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:53.309132+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" }\n"} +{"Time":"2020-04-21T17:17:53.309137+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" }\n"} +{"Time":"2020-04-21T17:17:53.309142+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" insolar_api_wrapper.go:160: Member created: insolar:1AnVTCOe6_6DLUjIJhlglrdMQ0--jkim4djoMYjz_HV8\n"} +{"Time":"2020-04-21T17:17:53.309147+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:17:53.309152+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:17:53.309157+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \t \t\t\t\tinsolar_api_wrapper.go:322\n"} +{"Time":"2020-04-21T17:17:53.309162+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \t \t\t\t\tinsolar_api_wrapper.go:183\n"} +{"Time":"2020-04-21T17:17:53.309167+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \t \t\t\t\ttransaction_test.go:247\n"} +{"Time":"2020-04-21T17:17:53.309172+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:17:53.309177+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:17:53.309182+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \tTest: \tTestGetFailedTx_nonexistentMemRef_byRegexp\n"} +{"Time":"2020-04-21T17:17:53.309192+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:17:53.309198+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetFailedTx_nonexistentMemRef_byRegexp","Elapsed":0.67} +{"Time":"2020-04-21T17:17:53.309205+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver"} +{"Time":"2020-04-21T17:17:53.30921+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":"=== RUN TestGetTransactionsSearchObserver\n"} +{"Time":"2020-04-21T17:17:53.450279+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":"--- FAIL: TestGetTransactionsSearchObserver (0.14s)\n"} +{"Time":"2020-04-21T17:17:53.450317+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" transactions_search_test.go:32: C861\tУспешный поиск по транзакциям, если создано 2 мембера и 1 транзакция между ними \n"} +{"Time":"2020-04-21T17:17:53.45035+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:53.450359+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" insolar_api_wrapper.go:126: Received seed: rXld+hps19XIFWsLCeskYUnBv9+a8AlDLgTn31bwkxg=\n"} +{"Time":"2020-04-21T17:17:53.450369+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:53.450381+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:53.450393+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:53.450405+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:53.450413+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:53.450435+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:53.450446+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:53.450458+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" {\n"} +{"Time":"2020-04-21T17:17:53.45047+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:53.4505+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"id\": 46,\n"} +{"Time":"2020-04-21T17:17:53.450505+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:53.450511+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" }\n"} +{"Time":"2020-04-21T17:17:53.450516+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:53.450523+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:53.450531+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:53.450539+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" {\n"} +{"Time":"2020-04-21T17:17:53.450547+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:53.450556+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"id\": 46,\n"} +{"Time":"2020-04-21T17:17:53.450564+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:53.450573+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"seed\": \"rXld+hps19XIFWsLCeskYUnBv9+a8AlDLgTn31bwkxg=\"\n"} +{"Time":"2020-04-21T17:17:53.450583+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" },\n"} +{"Time":"2020-04-21T17:17:53.45059+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:53.450598+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:53.450606+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:53.450615+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:53.450624+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" },\n"} +{"Time":"2020-04-21T17:17:53.450632+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:53.450641+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:53.450649+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" }\n"} +{"Time":"2020-04-21T17:17:53.450657+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" }\n"} +{"Time":"2020-04-21T17:17:53.450665+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:53.450673+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:53.450691+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:53.450698+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:53.450703+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:53.450707+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:41: -H Digest: [SHA-256=MMhXVNu6h1Iachgk5mY3wC5bRcaAQcM3ynHXGFDF5Sg=]\n"} +{"Time":"2020-04-21T17:17:53.450713+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEQCIGK03JgOY8wVIWEv4Lfp2fKGdmk6urbwvI5PExbtgTbjAiBwsSpkjux60gf/RraflFK1pgKh2qHzZBn9VmyOUIDPZw==]\n"} +{"Time":"2020-04-21T17:17:53.450719+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:53.450723+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:53.450728+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:53.450733+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" {\n"} +{"Time":"2020-04-21T17:17:53.450738+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:53.450744+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"id\": 47,\n"} +{"Time":"2020-04-21T17:17:53.45075+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:53.450755+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:53.450759+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"seed\": \"rXld+hps19XIFWsLCeskYUnBv9+a8AlDLgTn31bwkxg=\",\n"} +{"Time":"2020-04-21T17:17:53.450765+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:17:53.45078+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAElNlEm+g5tqu8HoqpVmhQX+kSSzGl\\nUKjsc5r7JnzoGDpssY517XKJCvbmcy1KKSblT8pJnUw6Yt335U4hGvvtvA==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:53.450787+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" }\n"} +{"Time":"2020-04-21T17:17:53.450791+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" }\n"} +{"Time":"2020-04-21T17:17:53.450796+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:53.450801+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:53.450806+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:53.450811+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" {\n"} +{"Time":"2020-04-21T17:17:53.450816+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:53.45082+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"id\": 47,\n"} +{"Time":"2020-04-21T17:17:53.450825+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:53.45083+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:53.450835+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:53.45084+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" },\n"} +{"Time":"2020-04-21T17:17:53.450844+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:53.450849+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:53.450854+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" },\n"} +{"Time":"2020-04-21T17:17:53.450859+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:53.450869+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:53.450875+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:53.45088+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"traceID\": \"14434eb49ba90d2f294404df2e9e7c85\",\n"} +{"Time":"2020-04-21T17:17:53.450885+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:53.45089+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:53.450895+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" ]\n"} +{"Time":"2020-04-21T17:17:53.4509+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" },\n"} +{"Time":"2020-04-21T17:17:53.450905+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:53.450909+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:53.450915+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" }\n"} +{"Time":"2020-04-21T17:17:53.450919+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" }\n"} +{"Time":"2020-04-21T17:17:53.450929+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:53.450934+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:53.450939+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \t \t\t\t\tinsolar_api_wrapper.go:159\n"} +{"Time":"2020-04-21T17:17:53.450944+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \t \t\t\t\ttransactions_search_test.go:33\n"} +{"Time":"2020-04-21T17:17:53.450949+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:53.450955+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \tTest: \tTestGetTransactionsSearchObserver\n"} +{"Time":"2020-04-21T17:17:53.45096+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:53.450969+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestGetTransactionsSearchObserver","Elapsed":0.14} +{"Time":"2020-04-21T17:17:53.450977+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Output":"FAIL\n"} +{"Time":"2020-04-21T17:17:53.453083+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Output":"FAIL\tgithub.com/insolar/go-autotests/apitests/tests/observer/observerpublic\t26.667s\n"} +{"Time":"2020-04-21T17:17:53.4531+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Elapsed":26.667} +{"Time":"2020-04-21T17:17:53.455861+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerstatistics","Output":"? \tgithub.com/insolar/go-autotests/apitests/tests/observer/observerstatistics\t[no test files]\n"} +{"Time":"2020-04-21T17:17:53.455873+03:00","Action":"skip","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerstatistics","Elapsed":0} +{"Time":"2020-04-21T17:17:53.883805+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer","Output":"? \tgithub.com/insolar/go-autotests/apitests/tests/observer\t[no test files]\n"} +{"Time":"2020-04-21T17:17:53.884443+03:00","Action":"skip","Package":"github.com/insolar/go-autotests/apitests/tests/observer","Elapsed":0.001} +{"Time":"2020-04-21T17:17:53.952085+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Output":"? \tgithub.com/insolar/go-autotests/apitests/tests/observer/observerinformation\t[no test files]\n"} +{"Time":"2020-04-21T17:17:53.952116+03:00","Action":"skip","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinformation","Elapsed":0} +{"Time":"2020-04-21T17:17:56.185161+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount"} +{"Time":"2020-04-21T17:17:56.185205+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount","Output":"=== RUN TestObserverAddressesCount\n"} +{"Time":"2020-04-21T17:17:56.499523+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount","Output":"--- FAIL: TestObserverAddressesCount (0.31s)\n"} +{"Time":"2020-04-21T17:17:56.499561+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:56.499597+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/admin/migration/addresses/count\n"} +{"Time":"2020-04-21T17:17:56.499618+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:56.499626+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:56.499637+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:56.499656+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:56.499665+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount","Output":" apilogger.go:54: http status: 404 Not Found\n"} +{"Time":"2020-04-21T17:17:56.499672+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:56.499677+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount","Output":" {\n"} +{"Time":"2020-04-21T17:17:56.499693+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount","Output":" \"count\": 0\n"} +{"Time":"2020-04-21T17:17:56.499705+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount","Output":" }\n"} +{"Time":"2020-04-21T17:17:56.49971+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount","Output":" observer_internal_api_wrapper.go:49: \n"} +{"Time":"2020-04-21T17:17:56.499757+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount","Output":" \tError Trace:\tobserver_internal_api_wrapper.go:49\n"} +{"Time":"2020-04-21T17:17:56.499773+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount","Output":" \t \t\t\t\taddresses_count_test.go:31\n"} +{"Time":"2020-04-21T17:17:56.499779+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount","Output":" \tError: \tExpected nil, but got: client.GenericOpenAPIError{body:[]uint8{0x7b, 0x20, 0x22, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x54, 0x68, 0x65, 0x20, 0x70, 0x61, 0x67, 0x65, 0x20, 0x79, 0x6f, 0x75, 0x27, 0x72, 0x65, 0x20, 0x6c, 0x6f, 0x6f, 0x6b, 0x69, 0x6e, 0x67, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x63, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x62, 0x65, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x22, 0x20, 0x7d}, error:\"404 Not Found\", model:interface {}(nil)}\n"} +{"Time":"2020-04-21T17:17:56.499804+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount","Output":" \tTest: \tTestObserverAddressesCount\n"} +{"Time":"2020-04-21T17:17:56.499811+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCount","Elapsed":0.31} +{"Time":"2020-04-21T17:17:56.499817+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCountCompareToPlatform"} +{"Time":"2020-04-21T17:17:56.499823+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCountCompareToPlatform","Output":"=== RUN TestObserverAddressesCountCompareToPlatform\n"} +{"Time":"2020-04-21T17:17:56.499857+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCountCompareToPlatform","Output":"--- SKIP: TestObserverAddressesCountCompareToPlatform (0.00s)\n"} +{"Time":"2020-04-21T17:17:56.499862+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCountCompareToPlatform","Output":" addresses_count_test.go:37: https://insolar.atlassian.net/browse/INS-4041\n"} +{"Time":"2020-04-21T17:17:56.499867+03:00","Action":"skip","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesCountCompareToPlatform","Elapsed":0} +{"Time":"2020-04-21T17:17:56.499871+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation"} +{"Time":"2020-04-21T17:17:56.499874+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation","Output":"=== RUN TestObserverAddressesDecrementAfterMigrationMemberCreation\n"} +{"Time":"2020-04-21T17:17:56.567857+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation","Output":"--- FAIL: TestObserverAddressesDecrementAfterMigrationMemberCreation (0.07s)\n"} +{"Time":"2020-04-21T17:17:56.56789+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:56.5679+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/admin/migration/addresses/count\n"} +{"Time":"2020-04-21T17:17:56.567906+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:56.567912+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:56.567917+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:56.567922+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:56.567927+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation","Output":" apilogger.go:54: http status: 404 Not Found\n"} +{"Time":"2020-04-21T17:17:56.567932+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:56.567938+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation","Output":" {\n"} +{"Time":"2020-04-21T17:17:56.567943+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation","Output":" \"count\": 0\n"} +{"Time":"2020-04-21T17:17:56.567948+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation","Output":" }\n"} +{"Time":"2020-04-21T17:17:56.567953+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation","Output":" observer_internal_api_wrapper.go:49: \n"} +{"Time":"2020-04-21T17:17:56.567958+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation","Output":" \tError Trace:\tobserver_internal_api_wrapper.go:49\n"} +{"Time":"2020-04-21T17:17:56.56797+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation","Output":" \t \t\t\t\taddresses_count_test.go:52\n"} +{"Time":"2020-04-21T17:17:56.567976+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation","Output":" \tError: \tExpected nil, but got: client.GenericOpenAPIError{body:[]uint8{0x7b, 0x20, 0x22, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x54, 0x68, 0x65, 0x20, 0x70, 0x61, 0x67, 0x65, 0x20, 0x79, 0x6f, 0x75, 0x27, 0x72, 0x65, 0x20, 0x6c, 0x6f, 0x6f, 0x6b, 0x69, 0x6e, 0x67, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x63, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x62, 0x65, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x22, 0x20, 0x7d}, error:\"404 Not Found\", model:interface {}(nil)}\n"} +{"Time":"2020-04-21T17:17:56.567985+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation","Output":" \tTest: \tTestObserverAddressesDecrementAfterMigrationMemberCreation\n"} +{"Time":"2020-04-21T17:17:56.567992+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesDecrementAfterMigrationMemberCreation","Elapsed":0.07} +{"Time":"2020-04-21T17:17:56.568+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation"} +{"Time":"2020-04-21T17:17:56.568005+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation","Output":"=== RUN TestObserverAddressesNotDecrementAfterMemberCreation\n"} +{"Time":"2020-04-21T17:17:56.635387+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation","Output":"--- FAIL: TestObserverAddressesNotDecrementAfterMemberCreation (0.07s)\n"} +{"Time":"2020-04-21T17:17:56.635431+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:56.635449+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/admin/migration/addresses/count\n"} +{"Time":"2020-04-21T17:17:56.63546+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:56.635469+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:56.635477+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:56.635502+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:56.635511+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation","Output":" apilogger.go:54: http status: 404 Not Found\n"} +{"Time":"2020-04-21T17:17:56.63552+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:56.635528+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation","Output":" {\n"} +{"Time":"2020-04-21T17:17:56.635554+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation","Output":" \"count\": 0\n"} +{"Time":"2020-04-21T17:17:56.635564+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation","Output":" }\n"} +{"Time":"2020-04-21T17:17:56.635572+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation","Output":" observer_internal_api_wrapper.go:49: \n"} +{"Time":"2020-04-21T17:17:56.635581+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation","Output":" \tError Trace:\tobserver_internal_api_wrapper.go:49\n"} +{"Time":"2020-04-21T17:17:56.635591+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation","Output":" \t \t\t\t\taddresses_count_test.go:65\n"} +{"Time":"2020-04-21T17:17:56.635611+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation","Output":" \tError: \tExpected nil, but got: client.GenericOpenAPIError{body:[]uint8{0x7b, 0x20, 0x22, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x54, 0x68, 0x65, 0x20, 0x70, 0x61, 0x67, 0x65, 0x20, 0x79, 0x6f, 0x75, 0x27, 0x72, 0x65, 0x20, 0x6c, 0x6f, 0x6f, 0x6b, 0x69, 0x6e, 0x67, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x63, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x62, 0x65, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x22, 0x20, 0x7d}, error:\"404 Not Found\", model:interface {}(nil)}\n"} +{"Time":"2020-04-21T17:17:56.635625+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation","Output":" \tTest: \tTestObserverAddressesNotDecrementAfterMemberCreation\n"} +{"Time":"2020-04-21T17:17:56.635634+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Test":"TestObserverAddressesNotDecrementAfterMemberCreation","Elapsed":0.07} +{"Time":"2020-04-21T17:17:56.635648+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Output":"FAIL\n"} +{"Time":"2020-04-21T17:17:56.637459+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Output":"FAIL\tgithub.com/insolar/go-autotests/apitests/tests/observer/observerinternal\t0.754s\n"} +{"Time":"2020-04-21T17:17:56.63749+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerinternal","Elapsed":0.754} +{"Time":"2020-04-21T17:17:58.780305+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats"} +{"Time":"2020-04-21T17:17:58.780333+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":"=== RUN TestNetworkStats\n"} +{"Time":"2020-04-21T17:17:59.168317+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":"--- FAIL: TestNetworkStats (0.39s)\n"} +{"Time":"2020-04-21T17:17:59.168346+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" network_statistics_test.go:34: C900 Успешное получение статистики\n"} +{"Time":"2020-04-21T17:17:59.168363+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:59.168369+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/stats/network\n"} +{"Time":"2020-04-21T17:17:59.168375+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:59.168381+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:59.168399+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:59.168406+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:59.168415+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:59.168421+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:59.168427+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:59.168436+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"totalTransactions\": 109,\n"} +{"Time":"2020-04-21T17:17:59.168443+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"accounts\": 169,\n"} +{"Time":"2020-04-21T17:17:59.168449+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"nodes\": 11,\n"} +{"Time":"2020-04-21T17:17:59.168454+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"currentTPS\": 0,\n"} +{"Time":"2020-04-21T17:17:59.168465+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"maxTPS\": 7,\n"} +{"Time":"2020-04-21T17:17:59.168471+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"lastMonthTransactions\": 108\n"} +{"Time":"2020-04-21T17:17:59.168477+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.168482+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:59.168488+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/admin-api/rpc\n"} +{"Time":"2020-04-21T17:17:59.168494+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:59.168501+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:59.168508+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:59.168523+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:59.16853+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:59.168535+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:59.16854+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:59.168547+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"id\": 1,\n"} +{"Time":"2020-04-21T17:17:59.168553+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"method\": \"node.getStatus\"\n"} +{"Time":"2020-04-21T17:17:59.168558+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.168562+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:59.168567+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" apilogger.go:54: http status: 404 Not Found\n"} +{"Time":"2020-04-21T17:17:59.168572+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:59.168577+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" {\n"} +{"Time":"2020-04-21T17:17:59.168583+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"jsonrpc\": \"\",\n"} +{"Time":"2020-04-21T17:17:59.168588+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"id\": null,\n"} +{"Time":"2020-04-21T17:17:59.168602+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:59.168607+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"networkState\": \"\",\n"} +{"Time":"2020-04-21T17:17:59.168612+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"nodeState\": \"\",\n"} +{"Time":"2020-04-21T17:17:59.168617+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"additionalNodeState\": \"\",\n"} +{"Time":"2020-04-21T17:17:59.168624+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"origin\": {\n"} +{"Time":"2020-04-21T17:17:59.168629+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"reference\": \"\",\n"} +{"Time":"2020-04-21T17:17:59.168634+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"role\": \"\",\n"} +{"Time":"2020-04-21T17:17:59.168639+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"isWorking\": false\n"} +{"Time":"2020-04-21T17:17:59.168645+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:59.168649+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"activeListSize\": 0,\n"} +{"Time":"2020-04-21T17:17:59.168661+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"workingListSize\": 0,\n"} +{"Time":"2020-04-21T17:17:59.168672+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"nodes\": null,\n"} +{"Time":"2020-04-21T17:17:59.168677+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"pulseNumber\": 0,\n"} +{"Time":"2020-04-21T17:17:59.168682+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"entropy\": \"\",\n"} +{"Time":"2020-04-21T17:17:59.168687+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"version\": \"\"\n"} +{"Time":"2020-04-21T17:17:59.168691+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:59.168696+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:59.168706+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:59.168711+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:59.168745+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:59.168752+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" },\n"} +{"Time":"2020-04-21T17:17:59.168761+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:59.168766+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:59.168771+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.168776+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.16878+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" insolar_internal_api_wrapper.go:92: \n"} +{"Time":"2020-04-21T17:17:59.168785+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:92\n"} +{"Time":"2020-04-21T17:17:59.16879+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \t \t\t\t\tnetwork_statistics_test.go:36\n"} +{"Time":"2020-04-21T17:17:59.168796+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \tError: \tExpected nil, but got: client.GenericOpenAPIError{body:[]uint8{0x7b, 0x20, 0x22, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x3a, 0x20, 0x22, 0x54, 0x68, 0x65, 0x20, 0x70, 0x61, 0x67, 0x65, 0x20, 0x79, 0x6f, 0x75, 0x27, 0x72, 0x65, 0x20, 0x6c, 0x6f, 0x6f, 0x6b, 0x69, 0x6e, 0x67, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x63, 0x6f, 0x75, 0x6c, 0x64, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x62, 0x65, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0x22, 0x20, 0x7d}, error:\"404 Not Found\", model:interface {}(nil)}\n"} +{"Time":"2020-04-21T17:17:59.168809+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Output":" \tTest: \tTestNetworkStats\n"} +{"Time":"2020-04-21T17:17:59.168816+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStats","Elapsed":0.39} +{"Time":"2020-04-21T17:17:59.168826+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers"} +{"Time":"2020-04-21T17:17:59.16883+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":"=== RUN TestNetworkStatsAddMembers\n"} +{"Time":"2020-04-21T17:17:59.386285+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":"--- FAIL: TestNetworkStatsAddMembers (0.22s)\n"} +{"Time":"2020-04-21T17:17:59.386324+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" network_statistics_test.go:41: C872\tУспешное получение статистики, если создан +1 мембер, проверка accounts = +1\n"} +{"Time":"2020-04-21T17:17:59.386361+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:59.386371+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/stats/network\n"} +{"Time":"2020-04-21T17:17:59.386379+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:59.386387+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:59.386396+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:59.386404+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:59.386411+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:59.386454+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:59.386481+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" {\n"} +{"Time":"2020-04-21T17:17:59.386508+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"totalTransactions\": 109,\n"} +{"Time":"2020-04-21T17:17:59.386514+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"accounts\": 169,\n"} +{"Time":"2020-04-21T17:17:59.38652+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"nodes\": 11,\n"} +{"Time":"2020-04-21T17:17:59.386526+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"currentTPS\": 0,\n"} +{"Time":"2020-04-21T17:17:59.386545+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"maxTPS\": 7,\n"} +{"Time":"2020-04-21T17:17:59.386551+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"lastMonthTransactions\": 108\n"} +{"Time":"2020-04-21T17:17:59.386556+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.386561+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:59.386566+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" insolar_api_wrapper.go:126: Received seed: REYe15jYxhmB4WR7Li7Vd9Q1qUO3Gr3Ko2U/VGc+7oE=\n"} +{"Time":"2020-04-21T17:17:59.386571+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:59.386578+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:59.386583+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:59.386588+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:59.386593+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:59.3866+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:59.386606+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:59.386611+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" {\n"} +{"Time":"2020-04-21T17:17:59.386617+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:59.386623+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"id\": 2,\n"} +{"Time":"2020-04-21T17:17:59.386628+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:59.386641+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.386646+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:59.386653+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:59.386658+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:59.386663+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" {\n"} +{"Time":"2020-04-21T17:17:59.386668+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:59.386673+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"id\": 2,\n"} +{"Time":"2020-04-21T17:17:59.386678+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:59.386683+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"seed\": \"REYe15jYxhmB4WR7Li7Vd9Q1qUO3Gr3Ko2U/VGc+7oE=\"\n"} +{"Time":"2020-04-21T17:17:59.386689+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" },\n"} +{"Time":"2020-04-21T17:17:59.3867+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:59.38671+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:59.386716+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:59.386721+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:59.386726+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" },\n"} +{"Time":"2020-04-21T17:17:59.386732+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:59.386737+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:59.386742+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.386747+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.386751+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:59.386756+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:59.386766+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:59.386773+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:59.386778+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:59.386783+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:59.386788+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:41: -H Digest: [SHA-256=ENIjIWMaq4tnBQUdjQrZQsXspb8gSFFyxEpfSddinuU=]\n"} +{"Time":"2020-04-21T17:17:59.386798+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEUCIG9kURoYne69n2hPgvVajApFyS9XmhlQNQ1mTTZfp6cSAiEA+CanXsuq/EY+zgUPh0vUda7VJXlxHFs1axpsL3UV7IU=]\n"} +{"Time":"2020-04-21T17:17:59.386804+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:59.386809+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:59.386815+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" {\n"} +{"Time":"2020-04-21T17:17:59.38682+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:59.386831+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"id\": 3,\n"} +{"Time":"2020-04-21T17:17:59.386836+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:59.386841+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:59.386846+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"seed\": \"REYe15jYxhmB4WR7Li7Vd9Q1qUO3Gr3Ko2U/VGc+7oE=\",\n"} +{"Time":"2020-04-21T17:17:59.386852+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:17:59.386857+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEI4mbAJNsrjuuFpEwoSxSdkMrccWQ\\nx3qxg3ZlXwarLzsf28x999mULp4+o35VJUi2xvaODozcOeevkS4SXK9lVg==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:59.386863+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.38687+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.386875+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:59.386879+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:59.386886+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:59.386892+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" {\n"} +{"Time":"2020-04-21T17:17:59.386899+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:59.386904+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"id\": 3,\n"} +{"Time":"2020-04-21T17:17:59.386908+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:59.386913+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:59.386918+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:59.386925+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" },\n"} +{"Time":"2020-04-21T17:17:59.38693+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:59.386935+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:59.386943+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" },\n"} +{"Time":"2020-04-21T17:17:59.386947+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:59.386952+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:59.386957+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:59.386962+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"traceID\": \"87461b9f70b447a24d880d4c05864dba\",\n"} +{"Time":"2020-04-21T17:17:59.386968+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:59.386973+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:59.386978+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" ]\n"} +{"Time":"2020-04-21T17:17:59.386983+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" },\n"} +{"Time":"2020-04-21T17:17:59.386988+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:59.386999+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:59.387004+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.387014+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.387018+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:59.387028+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:59.387033+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \t \t\t\t\tinsolar_api_wrapper.go:159\n"} +{"Time":"2020-04-21T17:17:59.387045+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \t \t\t\t\tnetwork_statistics_test.go:44\n"} +{"Time":"2020-04-21T17:17:59.387051+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:59.387059+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \tTest: \tTestNetworkStatsAddMembers\n"} +{"Time":"2020-04-21T17:17:59.387065+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:59.387071+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddMembers","Elapsed":0.22} +{"Time":"2020-04-21T17:17:59.387081+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions"} +{"Time":"2020-04-21T17:17:59.387086+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":"=== RUN TestNetworkStatsAddTransactions\n"} +{"Time":"2020-04-21T17:17:59.603853+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":"--- FAIL: TestNetworkStatsAddTransactions (0.22s)\n"} +{"Time":"2020-04-21T17:17:59.603891+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" network_statistics_test.go:54: C873 Успешное получение статистики, если создано 2 мембера и 1 трансфер между ними, проверка accounts=+2, transactions=+3\n"} +{"Time":"2020-04-21T17:17:59.603906+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:59.603915+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/stats/network\n"} +{"Time":"2020-04-21T17:17:59.603923+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:59.603931+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:59.603939+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:59.603946+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:59.603954+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:59.603961+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:59.603969+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" {\n"} +{"Time":"2020-04-21T17:17:59.603977+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"totalTransactions\": 109,\n"} +{"Time":"2020-04-21T17:17:59.603986+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"accounts\": 169,\n"} +{"Time":"2020-04-21T17:17:59.603994+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"nodes\": 11,\n"} +{"Time":"2020-04-21T17:17:59.604028+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"currentTPS\": 0,\n"} +{"Time":"2020-04-21T17:17:59.604037+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"maxTPS\": 7,\n"} +{"Time":"2020-04-21T17:17:59.604057+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"lastMonthTransactions\": 108\n"} +{"Time":"2020-04-21T17:17:59.604066+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.604073+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:17:59.604081+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" insolar_api_wrapper.go:126: Received seed: GYY362yn1ysUHEo1R0VEmoibrBOLmAYV82VuXRZgaxs=\n"} +{"Time":"2020-04-21T17:17:59.604089+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:59.604097+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:59.604108+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:59.604116+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:59.604124+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:59.604132+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:59.604139+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:59.604147+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" {\n"} +{"Time":"2020-04-21T17:17:59.604154+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:59.604162+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"id\": 4,\n"} +{"Time":"2020-04-21T17:17:59.604176+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:17:59.604185+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.604192+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:59.604214+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:59.604225+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:59.60423+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" {\n"} +{"Time":"2020-04-21T17:17:59.604235+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:59.604244+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"id\": 4,\n"} +{"Time":"2020-04-21T17:17:59.604251+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:59.604256+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"seed\": \"GYY362yn1ysUHEo1R0VEmoibrBOLmAYV82VuXRZgaxs=\"\n"} +{"Time":"2020-04-21T17:17:59.604262+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" },\n"} +{"Time":"2020-04-21T17:17:59.604266+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:59.604272+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:59.604277+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:17:59.604282+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:17:59.604287+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" },\n"} +{"Time":"2020-04-21T17:17:59.604292+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:17:59.604297+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:17:59.604308+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.604313+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.604318+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:17:59.604322+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:59.604327+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:17:59.604332+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:59.604337+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:17:59.604342+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:59.604347+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:41: -H Digest: [SHA-256=GR1iZ+51yECbsGOTyv+9SFgA7zoRA+uR9uk+n5RzkVQ=]\n"} +{"Time":"2020-04-21T17:17:59.604352+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEUCIBuGlopMVd9HgvsMvg9d6YFiG/nUfT0xRWhqY/5sBw54AiEAwDRB6na26/gbdhmi/nvFUbDXVcXkgOMIC/2GaLMxhUo=]\n"} +{"Time":"2020-04-21T17:17:59.60436+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:59.604365+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:17:59.60437+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" {\n"} +{"Time":"2020-04-21T17:17:59.60438+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:59.604385+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"id\": 5,\n"} +{"Time":"2020-04-21T17:17:59.60439+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:17:59.604399+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:17:59.604404+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"seed\": \"GYY362yn1ysUHEo1R0VEmoibrBOLmAYV82VuXRZgaxs=\",\n"} +{"Time":"2020-04-21T17:17:59.604409+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:17:59.604416+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEI3/ReKhINoRn2jDON2Q7Mr/1PQma\\niYb9cBHcbj/AE4KBM3ixxz60DdgLgP7x3bSmEZ9tb1Qd63jxsAJBGH8nAg==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:17:59.604422+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.604427+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.604432+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:59.604436+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:59.604441+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:59.604446+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" {\n"} +{"Time":"2020-04-21T17:17:59.604451+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:17:59.604456+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"id\": 5,\n"} +{"Time":"2020-04-21T17:17:59.60446+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:17:59.604465+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:17:59.60447+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:17:59.604475+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" },\n"} +{"Time":"2020-04-21T17:17:59.60448+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:59.604493+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:17:59.604498+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" },\n"} +{"Time":"2020-04-21T17:17:59.604503+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:17:59.604508+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:17:59.604513+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:17:59.604518+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"traceID\": \"e140ca480714d735fd32659e08875f9f\",\n"} +{"Time":"2020-04-21T17:17:59.604524+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:17:59.604529+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:17:59.604534+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" ]\n"} +{"Time":"2020-04-21T17:17:59.604538+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" },\n"} +{"Time":"2020-04-21T17:17:59.604543+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:17:59.60455+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:17:59.604556+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.60456+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.604565+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:17:59.60457+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:17:59.604585+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \t \t\t\t\tinsolar_api_wrapper.go:159\n"} +{"Time":"2020-04-21T17:17:59.60459+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \t \t\t\t\tnetwork_statistics_test.go:57\n"} +{"Time":"2020-04-21T17:17:59.604597+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:59.604602+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \tTest: \tTestNetworkStatsAddTransactions\n"} +{"Time":"2020-04-21T17:17:59.60461+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:17:59.604617+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsAddTransactions","Elapsed":0.22} +{"Time":"2020-04-21T17:17:59.604624+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit"} +{"Time":"2020-04-21T17:17:59.604629+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":"=== RUN TestNetworkStatsMigrateDeposit\n"} +{"Time":"2020-04-21T17:17:59.737895+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":"--- FAIL: TestNetworkStatsMigrateDeposit (0.13s)\n"} +{"Time":"2020-04-21T17:17:59.737935+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" network_statistics_test.go:75: C874\tУспешное получение статистики, если создан мембер + миграция на депозит, проверка accounts =+1, transactions=+2\n"} +{"Time":"2020-04-21T17:17:59.737949+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:17:59.737959+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/stats/network\n"} +{"Time":"2020-04-21T17:17:59.73798+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:17:59.738001+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:17:59.738014+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:17:59.738026+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:17:59.738058+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:17:59.738074+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:17:59.738088+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" {\n"} +{"Time":"2020-04-21T17:17:59.738102+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" \"totalTransactions\": 109,\n"} +{"Time":"2020-04-21T17:17:59.738118+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" \"accounts\": 169,\n"} +{"Time":"2020-04-21T17:17:59.738131+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" \"nodes\": 11,\n"} +{"Time":"2020-04-21T17:17:59.738149+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" \"currentTPS\": 0,\n"} +{"Time":"2020-04-21T17:17:59.738167+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" \"maxTPS\": 7,\n"} +{"Time":"2020-04-21T17:17:59.738184+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" \"lastMonthTransactions\": 108\n"} +{"Time":"2020-04-21T17:17:59.7382+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" }\n"} +{"Time":"2020-04-21T17:17:59.738218+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:17:59.738236+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:17:59.738254+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" \t \t\t\t\tnetwork_statistics_test.go:86\n"} +{"Time":"2020-04-21T17:17:59.738269+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" \t \t\t\t\tnetwork_statistics_test.go:77\n"} +{"Time":"2020-04-21T17:17:59.738282+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:17:59.73829+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:17:59.738298+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" \tTest: \tTestNetworkStatsMigrateDeposit\n"} +{"Time":"2020-04-21T17:17:59.738308+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:17:59.738317+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Test":"TestNetworkStatsMigrateDeposit","Elapsed":0.13} +{"Time":"2020-04-21T17:17:59.738331+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Output":"FAIL\n"} +{"Time":"2020-04-21T17:17:59.740213+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Output":"FAIL\tgithub.com/insolar/go-autotests/apitests/tests/observer/observerpublic\t1.331s\n"} +{"Time":"2020-04-21T17:17:59.740234+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpublic","Elapsed":1.332} +{"Time":"2020-04-21T17:17:59.776309+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Output":"? \tgithub.com/insolar/go-autotests/apitests/tests/observer/observerpulse\t[no test files]\n"} +{"Time":"2020-04-21T17:17:59.776348+03:00","Action":"skip","Package":"github.com/insolar/go-autotests/apitests/tests/observer/observerpulse","Elapsed":0} +{"Time":"2020-04-21T17:18:01.942874+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddValidMigrationAddresses"} +{"Time":"2020-04-21T17:18:01.943108+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddValidMigrationAddresses","Output":"=== RUN TestAddValidMigrationAddresses\n"} +{"Time":"2020-04-21T17:18:02.297265+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddValidMigrationAddresses","Output":"--- FAIL: TestAddValidMigrationAddresses (0.35s)\n"} +{"Time":"2020-04-21T17:18:02.297292+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddValidMigrationAddresses","Output":" add_migration_addresses_test.go:16: C1637 Добавление списка адресов миграции\n"} +{"Time":"2020-04-21T17:18:02.297301+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddValidMigrationAddresses","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:02.297309+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddValidMigrationAddresses","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:02.297322+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddValidMigrationAddresses","Output":" \t \t\t\t\tinsolar_internal_api_wrapper.go:334\n"} +{"Time":"2020-04-21T17:18:02.297327+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddValidMigrationAddresses","Output":" \t \t\t\t\tinsolar_internal_api_wrapper.go:360\n"} +{"Time":"2020-04-21T17:18:02.297339+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddValidMigrationAddresses","Output":" \t \t\t\t\tadd_migration_addresses_test.go:19\n"} +{"Time":"2020-04-21T17:18:02.297344+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddValidMigrationAddresses","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:02.297349+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddValidMigrationAddresses","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:02.297358+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddValidMigrationAddresses","Output":" \tTest: \tTestAddValidMigrationAddresses\n"} +{"Time":"2020-04-21T17:18:02.297385+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddValidMigrationAddresses","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:02.29742+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddValidMigrationAddresses","Elapsed":0.35} +{"Time":"2020-04-21T17:18:02.29745+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses"} +{"Time":"2020-04-21T17:18:02.297456+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses","Output":"=== RUN TestAddInvalidMigrationAddresses\n"} +{"Time":"2020-04-21T17:18:02.297468+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xded5686b5f0c7b09d24b25381a36884c4fe3b469c3847cb4ad8dac3c609f735c"} +{"Time":"2020-04-21T17:18:02.297473+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xded5686b5f0c7b09d24b25381a36884c4fe3b469c3847cb4ad8dac3c609f735c","Output":"=== RUN TestAddInvalidMigrationAddresses/0xded5686b5f0c7b09d24b25381a36884c4fe3b469c3847cb4ad8dac3c609f735c\n"} +{"Time":"2020-04-21T17:18:02.362783+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/01595abfa586722b8f71cd8f5a127bdb722afa206"} +{"Time":"2020-04-21T17:18:02.362809+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/01595abfa586722b8f71cd8f5a127bdb722afa206","Output":"=== RUN TestAddInvalidMigrationAddresses/01595abfa586722b8f71cd8f5a127bdb722afa206\n"} +{"Time":"2020-04-21T17:18:02.43591+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/x67d33c49d732efa83394e88671a3124a1b1c821a"} +{"Time":"2020-04-21T17:18:02.435947+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/x67d33c49d732efa83394e88671a3124a1b1c821a","Output":"=== RUN TestAddInvalidMigrationAddresses/x67d33c49d732efa83394e88671a3124a1b1c821a\n"} +{"Time":"2020-04-21T17:18:02.500348+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/22521a0f21bb9a960cda8f8f9c1619222c7e7da4"} +{"Time":"2020-04-21T17:18:02.500388+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/22521a0f21bb9a960cda8f8f9c1619222c7e7da4","Output":"=== RUN TestAddInvalidMigrationAddresses/22521a0f21bb9a960cda8f8f9c1619222c7e7da4\n"} +{"Time":"2020-04-21T17:18:02.565058+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xrXdkvlAsSDkRbbGIpGoJTtdJePjGFAIXZlgVEfGB"} +{"Time":"2020-04-21T17:18:02.565091+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xrXdkvlAsSDkRbbGIpGoJTtdJePjGFAIXZlgVEfGB","Output":"=== RUN TestAddInvalidMigrationAddresses/0xrXdkvlAsSDkRbbGIpGoJTtdJePjGFAIXZlgVEfGB\n"} +{"Time":"2020-04-21T17:18:02.630186+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xQJtxuExRqJMRAklocpSzDEWgJFQgEtfHGKAfDiS"} +{"Time":"2020-04-21T17:18:02.630212+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xQJtxuExRqJMRAklocpSzDEWgJFQgEtfHGKAfDiS","Output":"=== RUN TestAddInvalidMigrationAddresses/0xQJtxuExRqJMRAklocpSzDEWgJFQgEtfHGKAfDiS\n"} +{"Time":"2020-04-21T17:18:02.697308+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xxaTtdiuvdujeLUvVGhREMjEfythKHMbqLSUpwlOhP"} +{"Time":"2020-04-21T17:18:02.697334+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xxaTtdiuvdujeLUvVGhREMjEfythKHMbqLSUpwlOhP","Output":"=== RUN TestAddInvalidMigrationAddresses/0xxaTtdiuvdujeLUvVGhREMjEfythKHMbqLSUpwlOhP\n"} +{"Time":"2020-04-21T17:18:02.891823+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x76f3a100f787714c7a79771d7666d7f8"} +{"Time":"2020-04-21T17:18:02.891874+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x76f3a100f787714c7a79771d7666d7f8","Output":"=== RUN TestAddInvalidMigrationAddresses/0x76f3a100f787714c7a79771d7666d7f8\n"} +{"Time":"2020-04-21T17:18:02.964128+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x"} +{"Time":"2020-04-21T17:18:02.964165+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x","Output":"=== RUN TestAddInvalidMigrationAddresses/0x\n"} +{"Time":"2020-04-21T17:18:03.033444+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses","Output":"--- FAIL: TestAddInvalidMigrationAddresses (0.74s)\n"} +{"Time":"2020-04-21T17:18:03.033471+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses","Output":" add_migration_addresses_test.go:25: C1638 Ошибка при добавлении списка невалидных адресов\n"} +{"Time":"2020-04-21T17:18:03.03349+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xded5686b5f0c7b09d24b25381a36884c4fe3b469c3847cb4ad8dac3c609f735c","Output":" --- FAIL: TestAddInvalidMigrationAddresses/0xded5686b5f0c7b09d24b25381a36884c4fe3b469c3847cb4ad8dac3c609f735c (0.07s)\n"} +{"Time":"2020-04-21T17:18:03.033496+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xded5686b5f0c7b09d24b25381a36884c4fe3b469c3847cb4ad8dac3c609f735c","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:03.033505+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xded5686b5f0c7b09d24b25381a36884c4fe3b469c3847cb4ad8dac3c609f735c","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:03.033521+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xded5686b5f0c7b09d24b25381a36884c4fe3b469c3847cb4ad8dac3c609f735c","Output":" \t \t\t\t\tinsolar_internal_api_wrapper.go:334\n"} +{"Time":"2020-04-21T17:18:03.033526+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xded5686b5f0c7b09d24b25381a36884c4fe3b469c3847cb4ad8dac3c609f735c","Output":" \t \t\t\t\tadd_migration_addresses_test.go:29\n"} +{"Time":"2020-04-21T17:18:03.033532+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xded5686b5f0c7b09d24b25381a36884c4fe3b469c3847cb4ad8dac3c609f735c","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:03.033538+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xded5686b5f0c7b09d24b25381a36884c4fe3b469c3847cb4ad8dac3c609f735c","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:03.033545+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xded5686b5f0c7b09d24b25381a36884c4fe3b469c3847cb4ad8dac3c609f735c","Output":" \tTest: \tTestAddInvalidMigrationAddresses/0xded5686b5f0c7b09d24b25381a36884c4fe3b469c3847cb4ad8dac3c609f735c\n"} +{"Time":"2020-04-21T17:18:03.033551+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xded5686b5f0c7b09d24b25381a36884c4fe3b469c3847cb4ad8dac3c609f735c","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:03.033558+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xded5686b5f0c7b09d24b25381a36884c4fe3b469c3847cb4ad8dac3c609f735c","Elapsed":0.07} +{"Time":"2020-04-21T17:18:03.033565+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/01595abfa586722b8f71cd8f5a127bdb722afa206","Output":" --- FAIL: TestAddInvalidMigrationAddresses/01595abfa586722b8f71cd8f5a127bdb722afa206 (0.07s)\n"} +{"Time":"2020-04-21T17:18:03.03357+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/01595abfa586722b8f71cd8f5a127bdb722afa206","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:03.033586+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/01595abfa586722b8f71cd8f5a127bdb722afa206","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:03.03359+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/01595abfa586722b8f71cd8f5a127bdb722afa206","Output":" \t \t\t\t\tinsolar_internal_api_wrapper.go:334\n"} +{"Time":"2020-04-21T17:18:03.033595+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/01595abfa586722b8f71cd8f5a127bdb722afa206","Output":" \t \t\t\t\tadd_migration_addresses_test.go:29\n"} +{"Time":"2020-04-21T17:18:03.033599+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/01595abfa586722b8f71cd8f5a127bdb722afa206","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:03.033603+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/01595abfa586722b8f71cd8f5a127bdb722afa206","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:03.033609+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/01595abfa586722b8f71cd8f5a127bdb722afa206","Output":" \tTest: \tTestAddInvalidMigrationAddresses/01595abfa586722b8f71cd8f5a127bdb722afa206\n"} +{"Time":"2020-04-21T17:18:03.033613+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/01595abfa586722b8f71cd8f5a127bdb722afa206","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:03.033618+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/01595abfa586722b8f71cd8f5a127bdb722afa206","Elapsed":0.07} +{"Time":"2020-04-21T17:18:03.033622+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/x67d33c49d732efa83394e88671a3124a1b1c821a","Output":" --- FAIL: TestAddInvalidMigrationAddresses/x67d33c49d732efa83394e88671a3124a1b1c821a (0.06s)\n"} +{"Time":"2020-04-21T17:18:03.033626+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/x67d33c49d732efa83394e88671a3124a1b1c821a","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:03.03363+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/x67d33c49d732efa83394e88671a3124a1b1c821a","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:03.033634+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/x67d33c49d732efa83394e88671a3124a1b1c821a","Output":" \t \t\t\t\tinsolar_internal_api_wrapper.go:334\n"} +{"Time":"2020-04-21T17:18:03.033639+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/x67d33c49d732efa83394e88671a3124a1b1c821a","Output":" \t \t\t\t\tadd_migration_addresses_test.go:29\n"} +{"Time":"2020-04-21T17:18:03.033643+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/x67d33c49d732efa83394e88671a3124a1b1c821a","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:03.033647+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/x67d33c49d732efa83394e88671a3124a1b1c821a","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:03.033651+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/x67d33c49d732efa83394e88671a3124a1b1c821a","Output":" \tTest: \tTestAddInvalidMigrationAddresses/x67d33c49d732efa83394e88671a3124a1b1c821a\n"} +{"Time":"2020-04-21T17:18:03.033655+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/x67d33c49d732efa83394e88671a3124a1b1c821a","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:03.03366+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/x67d33c49d732efa83394e88671a3124a1b1c821a","Elapsed":0.06} +{"Time":"2020-04-21T17:18:03.033663+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/22521a0f21bb9a960cda8f8f9c1619222c7e7da4","Output":" --- FAIL: TestAddInvalidMigrationAddresses/22521a0f21bb9a960cda8f8f9c1619222c7e7da4 (0.06s)\n"} +{"Time":"2020-04-21T17:18:03.033668+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/22521a0f21bb9a960cda8f8f9c1619222c7e7da4","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:03.033672+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/22521a0f21bb9a960cda8f8f9c1619222c7e7da4","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:03.033701+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/22521a0f21bb9a960cda8f8f9c1619222c7e7da4","Output":" \t \t\t\t\tinsolar_internal_api_wrapper.go:334\n"} +{"Time":"2020-04-21T17:18:03.033709+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/22521a0f21bb9a960cda8f8f9c1619222c7e7da4","Output":" \t \t\t\t\tadd_migration_addresses_test.go:29\n"} +{"Time":"2020-04-21T17:18:03.033727+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/22521a0f21bb9a960cda8f8f9c1619222c7e7da4","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:03.033762+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/22521a0f21bb9a960cda8f8f9c1619222c7e7da4","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:03.03377+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/22521a0f21bb9a960cda8f8f9c1619222c7e7da4","Output":" \tTest: \tTestAddInvalidMigrationAddresses/22521a0f21bb9a960cda8f8f9c1619222c7e7da4\n"} +{"Time":"2020-04-21T17:18:03.033775+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/22521a0f21bb9a960cda8f8f9c1619222c7e7da4","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:03.033781+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/22521a0f21bb9a960cda8f8f9c1619222c7e7da4","Elapsed":0.06} +{"Time":"2020-04-21T17:18:03.033786+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xrXdkvlAsSDkRbbGIpGoJTtdJePjGFAIXZlgVEfGB","Output":" --- FAIL: TestAddInvalidMigrationAddresses/0xrXdkvlAsSDkRbbGIpGoJTtdJePjGFAIXZlgVEfGB (0.07s)\n"} +{"Time":"2020-04-21T17:18:03.033791+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xrXdkvlAsSDkRbbGIpGoJTtdJePjGFAIXZlgVEfGB","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:03.033795+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xrXdkvlAsSDkRbbGIpGoJTtdJePjGFAIXZlgVEfGB","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:03.033799+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xrXdkvlAsSDkRbbGIpGoJTtdJePjGFAIXZlgVEfGB","Output":" \t \t\t\t\tinsolar_internal_api_wrapper.go:334\n"} +{"Time":"2020-04-21T17:18:03.033804+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xrXdkvlAsSDkRbbGIpGoJTtdJePjGFAIXZlgVEfGB","Output":" \t \t\t\t\tadd_migration_addresses_test.go:29\n"} +{"Time":"2020-04-21T17:18:03.033819+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xrXdkvlAsSDkRbbGIpGoJTtdJePjGFAIXZlgVEfGB","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:03.033826+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xrXdkvlAsSDkRbbGIpGoJTtdJePjGFAIXZlgVEfGB","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:03.033833+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xrXdkvlAsSDkRbbGIpGoJTtdJePjGFAIXZlgVEfGB","Output":" \tTest: \tTestAddInvalidMigrationAddresses/0xrXdkvlAsSDkRbbGIpGoJTtdJePjGFAIXZlgVEfGB\n"} +{"Time":"2020-04-21T17:18:03.033839+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xrXdkvlAsSDkRbbGIpGoJTtdJePjGFAIXZlgVEfGB","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:03.033844+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xrXdkvlAsSDkRbbGIpGoJTtdJePjGFAIXZlgVEfGB","Elapsed":0.07} +{"Time":"2020-04-21T17:18:03.033848+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xQJtxuExRqJMRAklocpSzDEWgJFQgEtfHGKAfDiS","Output":" --- FAIL: TestAddInvalidMigrationAddresses/0xQJtxuExRqJMRAklocpSzDEWgJFQgEtfHGKAfDiS (0.07s)\n"} +{"Time":"2020-04-21T17:18:03.033852+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xQJtxuExRqJMRAklocpSzDEWgJFQgEtfHGKAfDiS","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:03.033856+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xQJtxuExRqJMRAklocpSzDEWgJFQgEtfHGKAfDiS","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:03.033865+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xQJtxuExRqJMRAklocpSzDEWgJFQgEtfHGKAfDiS","Output":" \t \t\t\t\tinsolar_internal_api_wrapper.go:334\n"} +{"Time":"2020-04-21T17:18:03.033879+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xQJtxuExRqJMRAklocpSzDEWgJFQgEtfHGKAfDiS","Output":" \t \t\t\t\tadd_migration_addresses_test.go:29\n"} +{"Time":"2020-04-21T17:18:03.033883+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xQJtxuExRqJMRAklocpSzDEWgJFQgEtfHGKAfDiS","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:03.033887+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xQJtxuExRqJMRAklocpSzDEWgJFQgEtfHGKAfDiS","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:03.033891+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xQJtxuExRqJMRAklocpSzDEWgJFQgEtfHGKAfDiS","Output":" \tTest: \tTestAddInvalidMigrationAddresses/0xQJtxuExRqJMRAklocpSzDEWgJFQgEtfHGKAfDiS\n"} +{"Time":"2020-04-21T17:18:03.033895+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xQJtxuExRqJMRAklocpSzDEWgJFQgEtfHGKAfDiS","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:03.0339+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xQJtxuExRqJMRAklocpSzDEWgJFQgEtfHGKAfDiS","Elapsed":0.07} +{"Time":"2020-04-21T17:18:03.033904+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xxaTtdiuvdujeLUvVGhREMjEfythKHMbqLSUpwlOhP","Output":" --- FAIL: TestAddInvalidMigrationAddresses/0xxaTtdiuvdujeLUvVGhREMjEfythKHMbqLSUpwlOhP (0.19s)\n"} +{"Time":"2020-04-21T17:18:03.033908+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xxaTtdiuvdujeLUvVGhREMjEfythKHMbqLSUpwlOhP","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:03.033912+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xxaTtdiuvdujeLUvVGhREMjEfythKHMbqLSUpwlOhP","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:03.033916+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xxaTtdiuvdujeLUvVGhREMjEfythKHMbqLSUpwlOhP","Output":" \t \t\t\t\tinsolar_internal_api_wrapper.go:334\n"} +{"Time":"2020-04-21T17:18:03.03392+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xxaTtdiuvdujeLUvVGhREMjEfythKHMbqLSUpwlOhP","Output":" \t \t\t\t\tadd_migration_addresses_test.go:29\n"} +{"Time":"2020-04-21T17:18:03.033926+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xxaTtdiuvdujeLUvVGhREMjEfythKHMbqLSUpwlOhP","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:03.03393+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xxaTtdiuvdujeLUvVGhREMjEfythKHMbqLSUpwlOhP","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:03.033934+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xxaTtdiuvdujeLUvVGhREMjEfythKHMbqLSUpwlOhP","Output":" \tTest: \tTestAddInvalidMigrationAddresses/0xxaTtdiuvdujeLUvVGhREMjEfythKHMbqLSUpwlOhP\n"} +{"Time":"2020-04-21T17:18:03.033938+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xxaTtdiuvdujeLUvVGhREMjEfythKHMbqLSUpwlOhP","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:03.033943+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0xxaTtdiuvdujeLUvVGhREMjEfythKHMbqLSUpwlOhP","Elapsed":0.19} +{"Time":"2020-04-21T17:18:03.033947+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x76f3a100f787714c7a79771d7666d7f8","Output":" --- FAIL: TestAddInvalidMigrationAddresses/0x76f3a100f787714c7a79771d7666d7f8 (0.07s)\n"} +{"Time":"2020-04-21T17:18:03.033951+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x76f3a100f787714c7a79771d7666d7f8","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:03.033955+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x76f3a100f787714c7a79771d7666d7f8","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:03.033959+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x76f3a100f787714c7a79771d7666d7f8","Output":" \t \t\t\t\tinsolar_internal_api_wrapper.go:334\n"} +{"Time":"2020-04-21T17:18:03.033963+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x76f3a100f787714c7a79771d7666d7f8","Output":" \t \t\t\t\tadd_migration_addresses_test.go:29\n"} +{"Time":"2020-04-21T17:18:03.034073+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x76f3a100f787714c7a79771d7666d7f8","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:03.034087+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x76f3a100f787714c7a79771d7666d7f8","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:03.034092+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x76f3a100f787714c7a79771d7666d7f8","Output":" \tTest: \tTestAddInvalidMigrationAddresses/0x76f3a100f787714c7a79771d7666d7f8\n"} +{"Time":"2020-04-21T17:18:03.034095+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x76f3a100f787714c7a79771d7666d7f8","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:03.034106+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x76f3a100f787714c7a79771d7666d7f8","Elapsed":0.07} +{"Time":"2020-04-21T17:18:03.03411+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x","Output":" --- FAIL: TestAddInvalidMigrationAddresses/0x (0.07s)\n"} +{"Time":"2020-04-21T17:18:03.034113+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:03.034117+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:03.03412+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x","Output":" \t \t\t\t\tinsolar_internal_api_wrapper.go:334\n"} +{"Time":"2020-04-21T17:18:03.034125+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x","Output":" \t \t\t\t\tadd_migration_addresses_test.go:29\n"} +{"Time":"2020-04-21T17:18:03.03413+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:03.034133+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:03.034136+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x","Output":" \tTest: \tTestAddInvalidMigrationAddresses/0x\n"} +{"Time":"2020-04-21T17:18:03.03414+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:03.034147+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses/0x","Elapsed":0.07} +{"Time":"2020-04-21T17:18:03.03415+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddInvalidMigrationAddresses","Elapsed":0.74} +{"Time":"2020-04-21T17:18:03.034153+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddExistingMigrationAddress"} +{"Time":"2020-04-21T17:18:03.034157+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddExistingMigrationAddress","Output":"=== RUN TestAddExistingMigrationAddress\n"} +{"Time":"2020-04-21T17:18:03.034188+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddExistingMigrationAddress","Output":"--- SKIP: TestAddExistingMigrationAddress (0.00s)\n"} +{"Time":"2020-04-21T17:18:03.034192+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddExistingMigrationAddress","Output":" add_migration_addresses_test.go:37: C1641 Добавление уже существующего migration address\n"} +{"Time":"2020-04-21T17:18:03.034199+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddExistingMigrationAddress","Output":" add_migration_addresses_test.go:38: https://insolar.atlassian.net/browse/INS-4040\n"} +{"Time":"2020-04-21T17:18:03.034203+03:00","Action":"skip","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddExistingMigrationAddress","Elapsed":0} +{"Time":"2020-04-21T17:18:03.034206+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddDifferentMigrationAddresses"} +{"Time":"2020-04-21T17:18:03.034209+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddDifferentMigrationAddresses","Output":"=== RUN TestAddDifferentMigrationAddresses\n"} +{"Time":"2020-04-21T17:18:03.098339+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddDifferentMigrationAddresses","Output":"--- FAIL: TestAddDifferentMigrationAddresses (0.06s)\n"} +{"Time":"2020-04-21T17:18:03.098371+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddDifferentMigrationAddresses","Output":" add_migration_addresses_test.go:48: C1639 Ошибка при добавлении списка адресов, если хотя бы один в списке - невалидный\n"} +{"Time":"2020-04-21T17:18:03.098381+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddDifferentMigrationAddresses","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:03.098387+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddDifferentMigrationAddresses","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:03.0984+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddDifferentMigrationAddresses","Output":" \t \t\t\t\tinsolar_internal_api_wrapper.go:334\n"} +{"Time":"2020-04-21T17:18:03.098406+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddDifferentMigrationAddresses","Output":" \t \t\t\t\tadd_migration_addresses_test.go:51\n"} +{"Time":"2020-04-21T17:18:03.098411+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddDifferentMigrationAddresses","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:03.098416+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddDifferentMigrationAddresses","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:03.098421+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddDifferentMigrationAddresses","Output":" \tTest: \tTestAddDifferentMigrationAddresses\n"} +{"Time":"2020-04-21T17:18:03.098427+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddDifferentMigrationAddresses","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:03.098433+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestAddDifferentMigrationAddresses","Elapsed":0.06} +{"Time":"2020-04-21T17:18:03.098441+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod"} +{"Time":"2020-04-21T17:18:03.098466+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod","Output":"=== RUN TestGetInfoWithBadMethod\n"} +{"Time":"2020-04-21T17:18:03.098497+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/empty_string"} +{"Time":"2020-04-21T17:18:03.098507+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/empty_string","Output":"=== RUN TestGetInfoWithBadMethod/empty_string\n"} +{"Time":"2020-04-21T17:18:03.168126+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/spaces"} +{"Time":"2020-04-21T17:18:03.168164+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/spaces","Output":"=== RUN TestGetInfoWithBadMethod/spaces\n"} +{"Time":"2020-04-21T17:18:03.238541+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name"} +{"Time":"2020-04-21T17:18:03.238577+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name","Output":"=== RUN TestGetInfoWithBadMethod/other_method_name\n"} +{"Time":"2020-04-21T17:18:03.327501+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/randomString_method_name"} +{"Time":"2020-04-21T17:18:03.32754+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/randomString_method_name","Output":"=== RUN TestGetInfoWithBadMethod/randomString_method_name\n"} +{"Time":"2020-04-21T17:18:03.396097+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_1111"} +{"Time":"2020-04-21T17:18:03.396136+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_1111","Output":"=== RUN TestGetInfoWithBadMethod/other_method_name_1111\n"} +{"Time":"2020-04-21T17:18:03.467846+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node_getInfo"} +{"Time":"2020-04-21T17:18:03.467901+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node_getInfo","Output":"=== RUN TestGetInfoWithBadMethod/other_method_name_node_getInfo\n"} +{"Time":"2020-04-21T17:18:03.535346+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node^getInfo"} +{"Time":"2020-04-21T17:18:03.535384+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node^getInfo","Output":"=== RUN TestGetInfoWithBadMethod/other_method_name_node^getInfo\n"} +{"Time":"2020-04-21T17:18:03.72833+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node*getInfo"} +{"Time":"2020-04-21T17:18:03.728368+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node*getInfo","Output":"=== RUN TestGetInfoWithBadMethod/other_method_name_node*getInfo\n"} +{"Time":"2020-04-21T17:18:03.806791+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node\u0026getInfo"} +{"Time":"2020-04-21T17:18:03.806824+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node\u0026getInfo","Output":"=== RUN TestGetInfoWithBadMethod/other_method_name_node\u0026getInfo\n"} +{"Time":"2020-04-21T17:18:04.007828+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node%getInfo"} +{"Time":"2020-04-21T17:18:04.007854+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node%getInfo","Output":"=== RUN TestGetInfoWithBadMethod/other_method_name_node%getInfo\n"} +{"Time":"2020-04-21T17:18:04.074566+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_getInfo"} +{"Time":"2020-04-21T17:18:04.0746+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_getInfo","Output":"=== RUN TestGetInfoWithBadMethod/other_method_name_getInfo\n"} +{"Time":"2020-04-21T17:18:04.145646+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod","Output":"--- FAIL: TestGetInfoWithBadMethod (1.05s)\n"} +{"Time":"2020-04-21T17:18:04.145689+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/empty_string","Output":" --- FAIL: TestGetInfoWithBadMethod/empty_string (0.07s)\n"} +{"Time":"2020-04-21T17:18:04.145701+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/empty_string","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.145709+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/empty_string","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.145728+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/empty_string","Output":" \t \t\t\t\tget_info_test.go:109\n"} +{"Time":"2020-04-21T17:18:04.145736+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/empty_string","Output":" \t \t\t\t\tget_info_test.go:55\n"} +{"Time":"2020-04-21T17:18:04.145744+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/empty_string","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.145752+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/empty_string","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.14576+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/empty_string","Output":" \tTest: \tTestGetInfoWithBadMethod/empty_string\n"} +{"Time":"2020-04-21T17:18:04.145788+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/empty_string","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.145797+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/empty_string","Elapsed":0.07} +{"Time":"2020-04-21T17:18:04.14581+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/spaces","Output":" --- FAIL: TestGetInfoWithBadMethod/spaces (0.07s)\n"} +{"Time":"2020-04-21T17:18:04.145818+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/spaces","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.145826+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/spaces","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.145834+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/spaces","Output":" \t \t\t\t\tget_info_test.go:109\n"} +{"Time":"2020-04-21T17:18:04.145842+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/spaces","Output":" \t \t\t\t\tget_info_test.go:55\n"} +{"Time":"2020-04-21T17:18:04.14585+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/spaces","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.145857+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/spaces","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.145876+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/spaces","Output":" \tTest: \tTestGetInfoWithBadMethod/spaces\n"} +{"Time":"2020-04-21T17:18:04.145884+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/spaces","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.145894+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/spaces","Elapsed":0.07} +{"Time":"2020-04-21T17:18:04.145902+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name","Output":" --- FAIL: TestGetInfoWithBadMethod/other_method_name (0.09s)\n"} +{"Time":"2020-04-21T17:18:04.14591+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.145918+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.145926+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name","Output":" \t \t\t\t\tget_info_test.go:109\n"} +{"Time":"2020-04-21T17:18:04.145934+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name","Output":" \t \t\t\t\tget_info_test.go:55\n"} +{"Time":"2020-04-21T17:18:04.145951+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.145963+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.145974+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name","Output":" \tTest: \tTestGetInfoWithBadMethod/other_method_name\n"} +{"Time":"2020-04-21T17:18:04.145982+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.145991+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name","Elapsed":0.09} +{"Time":"2020-04-21T17:18:04.145999+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/randomString_method_name","Output":" --- FAIL: TestGetInfoWithBadMethod/randomString_method_name (0.07s)\n"} +{"Time":"2020-04-21T17:18:04.146018+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/randomString_method_name","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.146026+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/randomString_method_name","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.146033+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/randomString_method_name","Output":" \t \t\t\t\tget_info_test.go:109\n"} +{"Time":"2020-04-21T17:18:04.146041+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/randomString_method_name","Output":" \t \t\t\t\tget_info_test.go:55\n"} +{"Time":"2020-04-21T17:18:04.146073+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/randomString_method_name","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.146078+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/randomString_method_name","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.146083+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/randomString_method_name","Output":" \tTest: \tTestGetInfoWithBadMethod/randomString_method_name\n"} +{"Time":"2020-04-21T17:18:04.146088+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/randomString_method_name","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.146098+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/randomString_method_name","Elapsed":0.07} +{"Time":"2020-04-21T17:18:04.146106+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_1111","Output":" --- FAIL: TestGetInfoWithBadMethod/other_method_name_1111 (0.07s)\n"} +{"Time":"2020-04-21T17:18:04.146115+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_1111","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.146121+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_1111","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.146126+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_1111","Output":" \t \t\t\t\tget_info_test.go:109\n"} +{"Time":"2020-04-21T17:18:04.14614+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_1111","Output":" \t \t\t\t\tget_info_test.go:55\n"} +{"Time":"2020-04-21T17:18:04.146146+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_1111","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.146151+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_1111","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.146156+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_1111","Output":" \tTest: \tTestGetInfoWithBadMethod/other_method_name_1111\n"} +{"Time":"2020-04-21T17:18:04.146161+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_1111","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.146167+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_1111","Elapsed":0.07} +{"Time":"2020-04-21T17:18:04.146172+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node_getInfo","Output":" --- FAIL: TestGetInfoWithBadMethod/other_method_name_node_getInfo (0.07s)\n"} +{"Time":"2020-04-21T17:18:04.146177+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node_getInfo","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.146182+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node_getInfo","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.146187+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node_getInfo","Output":" \t \t\t\t\tget_info_test.go:109\n"} +{"Time":"2020-04-21T17:18:04.146192+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node_getInfo","Output":" \t \t\t\t\tget_info_test.go:55\n"} +{"Time":"2020-04-21T17:18:04.146197+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node_getInfo","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.146202+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node_getInfo","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.146207+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node_getInfo","Output":" \tTest: \tTestGetInfoWithBadMethod/other_method_name_node_getInfo\n"} +{"Time":"2020-04-21T17:18:04.146213+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node_getInfo","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.146221+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node_getInfo","Elapsed":0.07} +{"Time":"2020-04-21T17:18:04.146227+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node^getInfo","Output":" --- FAIL: TestGetInfoWithBadMethod/other_method_name_node^getInfo (0.19s)\n"} +{"Time":"2020-04-21T17:18:04.146232+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node^getInfo","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.146242+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node^getInfo","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.146252+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node^getInfo","Output":" \t \t\t\t\tget_info_test.go:109\n"} +{"Time":"2020-04-21T17:18:04.146258+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node^getInfo","Output":" \t \t\t\t\tget_info_test.go:55\n"} +{"Time":"2020-04-21T17:18:04.146263+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node^getInfo","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.146268+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node^getInfo","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.146273+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node^getInfo","Output":" \tTest: \tTestGetInfoWithBadMethod/other_method_name_node^getInfo\n"} +{"Time":"2020-04-21T17:18:04.146278+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node^getInfo","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.146284+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node^getInfo","Elapsed":0.19} +{"Time":"2020-04-21T17:18:04.146293+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node*getInfo","Output":" --- FAIL: TestGetInfoWithBadMethod/other_method_name_node*getInfo (0.08s)\n"} +{"Time":"2020-04-21T17:18:04.146299+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node*getInfo","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.146306+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node*getInfo","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.146311+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node*getInfo","Output":" \t \t\t\t\tget_info_test.go:109\n"} +{"Time":"2020-04-21T17:18:04.146315+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node*getInfo","Output":" \t \t\t\t\tget_info_test.go:55\n"} +{"Time":"2020-04-21T17:18:04.146321+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node*getInfo","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.146325+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node*getInfo","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.146332+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node*getInfo","Output":" \tTest: \tTestGetInfoWithBadMethod/other_method_name_node*getInfo\n"} +{"Time":"2020-04-21T17:18:04.146337+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node*getInfo","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.146343+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node*getInfo","Elapsed":0.08} +{"Time":"2020-04-21T17:18:04.146347+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node\u0026getInfo","Output":" --- FAIL: TestGetInfoWithBadMethod/other_method_name_node\u0026getInfo (0.20s)\n"} +{"Time":"2020-04-21T17:18:04.146353+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node\u0026getInfo","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.146358+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node\u0026getInfo","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.146367+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node\u0026getInfo","Output":" \t \t\t\t\tget_info_test.go:109\n"} +{"Time":"2020-04-21T17:18:04.146372+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node\u0026getInfo","Output":" \t \t\t\t\tget_info_test.go:55\n"} +{"Time":"2020-04-21T17:18:04.146377+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node\u0026getInfo","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.146382+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node\u0026getInfo","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.146388+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node\u0026getInfo","Output":" \tTest: \tTestGetInfoWithBadMethod/other_method_name_node\u0026getInfo\n"} +{"Time":"2020-04-21T17:18:04.146393+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node\u0026getInfo","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.1464+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node\u0026getInfo","Elapsed":0.2} +{"Time":"2020-04-21T17:18:04.146406+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node%getInfo","Output":" --- FAIL: TestGetInfoWithBadMethod/other_method_name_node%getInfo (0.07s)\n"} +{"Time":"2020-04-21T17:18:04.146411+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node%getInfo","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.146418+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node%getInfo","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.146423+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node%getInfo","Output":" \t \t\t\t\tget_info_test.go:109\n"} +{"Time":"2020-04-21T17:18:04.146431+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node%getInfo","Output":" \t \t\t\t\tget_info_test.go:55\n"} +{"Time":"2020-04-21T17:18:04.146436+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node%getInfo","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.146441+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node%getInfo","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.146446+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node%getInfo","Output":" \tTest: \tTestGetInfoWithBadMethod/other_method_name_node%getInfo\n"} +{"Time":"2020-04-21T17:18:04.146451+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node%getInfo","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.146456+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_node%getInfo","Elapsed":0.07} +{"Time":"2020-04-21T17:18:04.146461+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_getInfo","Output":" --- FAIL: TestGetInfoWithBadMethod/other_method_name_getInfo (0.07s)\n"} +{"Time":"2020-04-21T17:18:04.146466+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_getInfo","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.146471+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_getInfo","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.146476+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_getInfo","Output":" \t \t\t\t\tget_info_test.go:109\n"} +{"Time":"2020-04-21T17:18:04.146481+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_getInfo","Output":" \t \t\t\t\tget_info_test.go:55\n"} +{"Time":"2020-04-21T17:18:04.146486+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_getInfo","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.146491+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_getInfo","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.146496+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_getInfo","Output":" \tTest: \tTestGetInfoWithBadMethod/other_method_name_getInfo\n"} +{"Time":"2020-04-21T17:18:04.146501+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_getInfo","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.146506+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod/other_method_name_getInfo","Elapsed":0.07} +{"Time":"2020-04-21T17:18:04.146511+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadMethod","Elapsed":1.05} +{"Time":"2020-04-21T17:18:04.146516+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion"} +{"Time":"2020-04-21T17:18:04.146523+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion","Output":"=== RUN TestGetInfoWithBadJsonVersion\n"} +{"Time":"2020-04-21T17:18:04.146547+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/value_1.0"} +{"Time":"2020-04-21T17:18:04.146552+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/value_1.0","Output":"=== RUN TestGetInfoWithBadJsonVersion/value_1.0\n"} +{"Time":"2020-04-21T17:18:04.2276+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/empty_value"} +{"Time":"2020-04-21T17:18:04.227637+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/empty_value","Output":"=== RUN TestGetInfoWithBadJsonVersion/empty_value\n"} +{"Time":"2020-04-21T17:18:04.29028+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/space_value"} +{"Time":"2020-04-21T17:18:04.290306+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/space_value","Output":"=== RUN TestGetInfoWithBadJsonVersion/space_value\n"} +{"Time":"2020-04-21T17:18:04.35719+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/randomString_value"} +{"Time":"2020-04-21T17:18:04.357215+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/randomString_value","Output":"=== RUN TestGetInfoWithBadJsonVersion/randomString_value\n"} +{"Time":"2020-04-21T17:18:04.425887+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/0_value"} +{"Time":"2020-04-21T17:18:04.425912+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/0_value","Output":"=== RUN TestGetInfoWithBadJsonVersion/0_value\n"} +{"Time":"2020-04-21T17:18:04.524462+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/-1_value"} +{"Time":"2020-04-21T17:18:04.524509+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/-1_value","Output":"=== RUN TestGetInfoWithBadJsonVersion/-1_value\n"} +{"Time":"2020-04-21T17:18:04.589707+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/3.0_value"} +{"Time":"2020-04-21T17:18:04.589733+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/3.0_value","Output":"=== RUN TestGetInfoWithBadJsonVersion/3.0_value\n"} +{"Time":"2020-04-21T17:18:04.652792+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion","Output":"--- FAIL: TestGetInfoWithBadJsonVersion (0.51s)\n"} +{"Time":"2020-04-21T17:18:04.652833+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/value_1.0","Output":" --- FAIL: TestGetInfoWithBadJsonVersion/value_1.0 (0.08s)\n"} +{"Time":"2020-04-21T17:18:04.652877+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/value_1.0","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.652911+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/value_1.0","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.652923+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/value_1.0","Output":" \t \t\t\t\tget_info_test.go:109\n"} +{"Time":"2020-04-21T17:18:04.652933+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/value_1.0","Output":" \t \t\t\t\tget_info_test.go:78\n"} +{"Time":"2020-04-21T17:18:04.652941+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/value_1.0","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.652963+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/value_1.0","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.653043+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/value_1.0","Output":" \tTest: \tTestGetInfoWithBadJsonVersion/value_1.0\n"} +{"Time":"2020-04-21T17:18:04.653108+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/value_1.0","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.653159+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/value_1.0","Elapsed":0.08} +{"Time":"2020-04-21T17:18:04.653182+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/empty_value","Output":" --- FAIL: TestGetInfoWithBadJsonVersion/empty_value (0.06s)\n"} +{"Time":"2020-04-21T17:18:04.653194+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/empty_value","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.653202+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/empty_value","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.653211+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/empty_value","Output":" \t \t\t\t\tget_info_test.go:109\n"} +{"Time":"2020-04-21T17:18:04.653219+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/empty_value","Output":" \t \t\t\t\tget_info_test.go:78\n"} +{"Time":"2020-04-21T17:18:04.653227+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/empty_value","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.653235+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/empty_value","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.653243+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/empty_value","Output":" \tTest: \tTestGetInfoWithBadJsonVersion/empty_value\n"} +{"Time":"2020-04-21T17:18:04.653252+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/empty_value","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.653261+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/empty_value","Elapsed":0.06} +{"Time":"2020-04-21T17:18:04.653269+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/space_value","Output":" --- FAIL: TestGetInfoWithBadJsonVersion/space_value (0.07s)\n"} +{"Time":"2020-04-21T17:18:04.653278+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/space_value","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.653298+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/space_value","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.653305+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/space_value","Output":" \t \t\t\t\tget_info_test.go:109\n"} +{"Time":"2020-04-21T17:18:04.653313+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/space_value","Output":" \t \t\t\t\tget_info_test.go:78\n"} +{"Time":"2020-04-21T17:18:04.653321+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/space_value","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.653329+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/space_value","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.653336+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/space_value","Output":" \tTest: \tTestGetInfoWithBadJsonVersion/space_value\n"} +{"Time":"2020-04-21T17:18:04.653344+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/space_value","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.653357+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/space_value","Elapsed":0.07} +{"Time":"2020-04-21T17:18:04.653365+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/randomString_value","Output":" --- FAIL: TestGetInfoWithBadJsonVersion/randomString_value (0.07s)\n"} +{"Time":"2020-04-21T17:18:04.653373+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/randomString_value","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.65338+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/randomString_value","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.653388+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/randomString_value","Output":" \t \t\t\t\tget_info_test.go:109\n"} +{"Time":"2020-04-21T17:18:04.653396+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/randomString_value","Output":" \t \t\t\t\tget_info_test.go:78\n"} +{"Time":"2020-04-21T17:18:04.653404+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/randomString_value","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.653412+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/randomString_value","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.65342+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/randomString_value","Output":" \tTest: \tTestGetInfoWithBadJsonVersion/randomString_value\n"} +{"Time":"2020-04-21T17:18:04.653433+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/randomString_value","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.653441+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/randomString_value","Elapsed":0.07} +{"Time":"2020-04-21T17:18:04.653449+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/0_value","Output":" --- FAIL: TestGetInfoWithBadJsonVersion/0_value (0.10s)\n"} +{"Time":"2020-04-21T17:18:04.653457+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/0_value","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.653464+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/0_value","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.653472+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/0_value","Output":" \t \t\t\t\tget_info_test.go:109\n"} +{"Time":"2020-04-21T17:18:04.65348+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/0_value","Output":" \t \t\t\t\tget_info_test.go:78\n"} +{"Time":"2020-04-21T17:18:04.65349+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/0_value","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.653498+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/0_value","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.653506+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/0_value","Output":" \tTest: \tTestGetInfoWithBadJsonVersion/0_value\n"} +{"Time":"2020-04-21T17:18:04.653514+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/0_value","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.653522+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/0_value","Elapsed":0.1} +{"Time":"2020-04-21T17:18:04.653535+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/-1_value","Output":" --- FAIL: TestGetInfoWithBadJsonVersion/-1_value (0.07s)\n"} +{"Time":"2020-04-21T17:18:04.653543+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/-1_value","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.65355+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/-1_value","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.653561+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/-1_value","Output":" \t \t\t\t\tget_info_test.go:109\n"} +{"Time":"2020-04-21T17:18:04.653577+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/-1_value","Output":" \t \t\t\t\tget_info_test.go:78\n"} +{"Time":"2020-04-21T17:18:04.653585+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/-1_value","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.653592+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/-1_value","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.6536+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/-1_value","Output":" \tTest: \tTestGetInfoWithBadJsonVersion/-1_value\n"} +{"Time":"2020-04-21T17:18:04.653608+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/-1_value","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.653616+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/-1_value","Elapsed":0.07} +{"Time":"2020-04-21T17:18:04.653624+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/3.0_value","Output":" --- FAIL: TestGetInfoWithBadJsonVersion/3.0_value (0.06s)\n"} +{"Time":"2020-04-21T17:18:04.653632+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/3.0_value","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.65364+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/3.0_value","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.653652+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/3.0_value","Output":" \t \t\t\t\tget_info_test.go:109\n"} +{"Time":"2020-04-21T17:18:04.65366+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/3.0_value","Output":" \t \t\t\t\tget_info_test.go:78\n"} +{"Time":"2020-04-21T17:18:04.653668+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/3.0_value","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.653676+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/3.0_value","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.653683+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/3.0_value","Output":" \tTest: \tTestGetInfoWithBadJsonVersion/3.0_value\n"} +{"Time":"2020-04-21T17:18:04.653691+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/3.0_value","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.6537+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion/3.0_value","Elapsed":0.06} +{"Time":"2020-04-21T17:18:04.653707+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadJsonVersion","Elapsed":0.51} +{"Time":"2020-04-21T17:18:04.653715+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadRequestId"} +{"Time":"2020-04-21T17:18:04.653722+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadRequestId","Output":"=== RUN TestGetInfoWithBadRequestId\n"} +{"Time":"2020-04-21T17:18:04.715897+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadRequestId","Output":"--- FAIL: TestGetInfoWithBadRequestId (0.06s)\n"} +{"Time":"2020-04-21T17:18:04.715924+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadRequestId","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.715947+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadRequestId","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.715953+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadRequestId","Output":" \t \t\t\t\tget_info_test.go:117\n"} +{"Time":"2020-04-21T17:18:04.715958+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadRequestId","Output":" \t \t\t\t\tget_info_test.go:93\n"} +{"Time":"2020-04-21T17:18:04.715964+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadRequestId","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.715969+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadRequestId","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.715975+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadRequestId","Output":" \tTest: \tTestGetInfoWithBadRequestId\n"} +{"Time":"2020-04-21T17:18:04.715984+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadRequestId","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.715991+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithBadRequestId","Elapsed":0.06} +{"Time":"2020-04-21T17:18:04.716001+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithTwoRequestId"} +{"Time":"2020-04-21T17:18:04.71601+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithTwoRequestId","Output":"=== RUN TestGetInfoWithTwoRequestId\n"} +{"Time":"2020-04-21T17:18:04.780124+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithTwoRequestId","Output":"--- FAIL: TestGetInfoWithTwoRequestId (0.06s)\n"} +{"Time":"2020-04-21T17:18:04.780163+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithTwoRequestId","Output":" get_info_test.go:130: \n"} +{"Time":"2020-04-21T17:18:04.78018+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithTwoRequestId","Output":" \tError Trace:\tget_info_test.go:130\n"} +{"Time":"2020-04-21T17:18:04.780204+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithTwoRequestId","Output":" \t \t\t\t\tget_info_test.go:117\n"} +{"Time":"2020-04-21T17:18:04.780213+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithTwoRequestId","Output":" \t \t\t\t\tget_info_test.go:104\n"} +{"Time":"2020-04-21T17:18:04.780235+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithTwoRequestId","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:04.780244+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithTwoRequestId","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:04.780252+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithTwoRequestId","Output":" \tTest: \tTestGetInfoWithTwoRequestId\n"} +{"Time":"2020-04-21T17:18:04.780263+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithTwoRequestId","Output":" \tMessages: \tGetInfo() return error\n"} +{"Time":"2020-04-21T17:18:04.780272+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetInfoWithTwoRequestId","Elapsed":0.06} +{"Time":"2020-04-21T17:18:04.780283+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember"} +{"Time":"2020-04-21T17:18:04.780294+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":"=== RUN TestGetMember\n"} +{"Time":"2020-04-21T17:18:05.43981+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":"--- FAIL: TestGetMember (0.66s)\n"} +{"Time":"2020-04-21T17:18:05.439848+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:18:05.439859+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" insolar_api_wrapper.go:126: Received seed: +MBxDntkETblIiwT+RIR+ItbWrr3AoiFwrq7d7JwQ8s=\n"} +{"Time":"2020-04-21T17:18:05.439886+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:18:05.439895+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:18:05.439907+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:18:05.439915+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:18:05.439923+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:18:05.439931+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:18:05.43994+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:18:05.439952+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" {\n"} +{"Time":"2020-04-21T17:18:05.439961+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:05.439978+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"id\": 30,\n"} +{"Time":"2020-04-21T17:18:05.439988+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:18:05.440002+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" }\n"} +{"Time":"2020-04-21T17:18:05.44001+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:18:05.440024+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:18:05.440037+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:18:05.440044+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" {\n"} +{"Time":"2020-04-21T17:18:05.440052+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:05.44006+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"id\": 30,\n"} +{"Time":"2020-04-21T17:18:05.440068+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:18:05.440076+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"seed\": \"+MBxDntkETblIiwT+RIR+ItbWrr3AoiFwrq7d7JwQ8s=\"\n"} +{"Time":"2020-04-21T17:18:05.440084+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" },\n"} +{"Time":"2020-04-21T17:18:05.440094+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:18:05.440102+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:18:05.44011+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:18:05.440118+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:18:05.440129+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" },\n"} +{"Time":"2020-04-21T17:18:05.440137+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:18:05.440144+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:18:05.440152+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" }\n"} +{"Time":"2020-04-21T17:18:05.440159+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" }\n"} +{"Time":"2020-04-21T17:18:05.440166+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:18:05.440173+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:18:05.44018+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:18:05.440188+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:18:05.440195+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:41: -H Digest: [SHA-256=a+dxlbFj5drUP9zo/HCTDXXyl1Zd/e12ryjAcvUJMBg=]\n"} +{"Time":"2020-04-21T17:18:05.440204+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEUCIQCXMRfaMUNJ11Ocbl6BrGwdpYVDBQeJ0A0lU4qiX5/y9QIgU9VXYyuqE1R0l5KuSKjs4nY9CuZBnMaX7NETNWlOBVk=]\n"} +{"Time":"2020-04-21T17:18:05.440213+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:18:05.44022+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:18:05.440228+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:18:05.440236+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:18:05.440253+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" {\n"} +{"Time":"2020-04-21T17:18:05.440261+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:05.440268+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"id\": 31,\n"} +{"Time":"2020-04-21T17:18:05.440276+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:18:05.440289+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:18:05.440297+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"seed\": \"+MBxDntkETblIiwT+RIR+ItbWrr3AoiFwrq7d7JwQ8s=\",\n"} +{"Time":"2020-04-21T17:18:05.440305+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:18:05.440313+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEMLpsk1L/JQBCbJ3h7Ds6l7datAa6\\nig00+Sli7t+9HuAd+m8Bv62/jQu1AjKXXIb4QLuJWqBFHwzWPJ5ULo4W/g==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:18:05.440322+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" }\n"} +{"Time":"2020-04-21T17:18:05.440329+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" }\n"} +{"Time":"2020-04-21T17:18:05.44034+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:18:05.440348+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:18:05.440355+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:18:05.440374+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" {\n"} +{"Time":"2020-04-21T17:18:05.440382+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:05.440389+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"id\": 31,\n"} +{"Time":"2020-04-21T17:18:05.440396+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:18:05.440404+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:18:05.440414+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"reference\": \"insolar:1AnVTHCTaYdXrCAKj8BX2ckp1dbCeLREZ8xSZScR-1GA\"\n"} +{"Time":"2020-04-21T17:18:05.440422+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" },\n"} +{"Time":"2020-04-21T17:18:05.440432+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"requestReference\": \"insolar:1AnVTHAn0Xu5y8pueS9xA0sa64HFpr4kcrRtS5pEdrK0.record\",\n"} +{"Time":"2020-04-21T17:18:05.440441+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"traceID\": \"46487153b4e309e2db11842d07c153aa\"\n"} +{"Time":"2020-04-21T17:18:05.440452+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" },\n"} +{"Time":"2020-04-21T17:18:05.44046+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:18:05.440467+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:18:05.440497+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:18:05.440502+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:18:05.440506+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:18:05.440511+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" },\n"} +{"Time":"2020-04-21T17:18:05.440516+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:18:05.440521+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:18:05.440525+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" }\n"} +{"Time":"2020-04-21T17:18:05.44053+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" }\n"} +{"Time":"2020-04-21T17:18:05.440535+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" insolar_api_wrapper.go:160: Member created: insolar:1AnVTHCTaYdXrCAKj8BX2ckp1dbCeLREZ8xSZScR-1GA\n"} +{"Time":"2020-04-21T17:18:05.44054+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:05.440545+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:05.440551+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \t \t\t\t\tinsolar_api_wrapper.go:322\n"} +{"Time":"2020-04-21T17:18:05.440556+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \t \t\t\t\tinsolar_api_wrapper.go:183\n"} +{"Time":"2020-04-21T17:18:05.440564+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \t \t\t\t\tget_member_test.go:34\n"} +{"Time":"2020-04-21T17:18:05.440569+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:05.440574+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:05.440578+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \tTest: \tTestGetMember\n"} +{"Time":"2020-04-21T17:18:05.440583+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:05.440591+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetMember","Elapsed":0.66} +{"Time":"2020-04-21T17:18:05.440598+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember"} +{"Time":"2020-04-21T17:18:05.440603+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":"=== RUN TestGetNotExistMember\n"} +{"Time":"2020-04-21T17:18:05.582354+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":"--- FAIL: TestGetNotExistMember (0.14s)\n"} +{"Time":"2020-04-21T17:18:05.582382+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:18:05.58239+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" insolar_api_wrapper.go:126: Received seed: KUdrGNN6h/OeoydE6eRMkr2LUK2n9AJfZbxsNQqXQS0=\n"} +{"Time":"2020-04-21T17:18:05.582397+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:18:05.582402+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:18:05.582408+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:18:05.582413+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:18:05.582418+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:18:05.582424+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:18:05.58243+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:18:05.582435+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" {\n"} +{"Time":"2020-04-21T17:18:05.582441+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:05.582457+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"id\": 33,\n"} +{"Time":"2020-04-21T17:18:05.582463+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:18:05.582472+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" }\n"} +{"Time":"2020-04-21T17:18:05.582479+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:18:05.582488+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:18:05.582496+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:18:05.582505+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" {\n"} +{"Time":"2020-04-21T17:18:05.58251+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:05.582516+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"id\": 33,\n"} +{"Time":"2020-04-21T17:18:05.582521+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:18:05.582526+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"seed\": \"KUdrGNN6h/OeoydE6eRMkr2LUK2n9AJfZbxsNQqXQS0=\"\n"} +{"Time":"2020-04-21T17:18:05.582532+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" },\n"} +{"Time":"2020-04-21T17:18:05.582537+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:18:05.582542+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:18:05.582547+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:18:05.582553+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:18:05.582558+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" },\n"} +{"Time":"2020-04-21T17:18:05.582563+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:18:05.582573+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:18:05.582578+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" }\n"} +{"Time":"2020-04-21T17:18:05.582583+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" }\n"} +{"Time":"2020-04-21T17:18:05.582588+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:18:05.582593+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:18:05.582599+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:18:05.582604+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:18:05.58261+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:18:05.582615+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:18:05.58262+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:41: -H Digest: [SHA-256=2rpgbobMkn42udnYrOjOz55II+q+O7iVdyDvwqD/+x4=]\n"} +{"Time":"2020-04-21T17:18:05.582625+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEUCICLJf8deTQ0YKnuaGt8lM0ku5FHuXODsDC8ns5WvXVJYAiEA8XhfrQc4WU49tDj0i8W5G/5W2nxIeIGVXeLj5IZf5GM=]\n"} +{"Time":"2020-04-21T17:18:05.582631+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:18:05.582636+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:18:05.582641+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" {\n"} +{"Time":"2020-04-21T17:18:05.582646+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:05.582651+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"id\": 34,\n"} +{"Time":"2020-04-21T17:18:05.582659+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:18:05.582664+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:18:05.582669+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"seed\": \"KUdrGNN6h/OeoydE6eRMkr2LUK2n9AJfZbxsNQqXQS0=\",\n"} +{"Time":"2020-04-21T17:18:05.582674+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"callSite\": \"member.get\",\n"} +{"Time":"2020-04-21T17:18:05.58268+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEna920nFZuXV246jvAbmegPWTb48+\\nSS90jYFO2G3p9+rbXMMCeMIXEdu132P16mqbMrkV4ar6ABc85fnAL1W4yQ==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:18:05.582686+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" }\n"} +{"Time":"2020-04-21T17:18:05.58269+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" }\n"} +{"Time":"2020-04-21T17:18:05.582698+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:18:05.582703+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:18:05.582708+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:18:05.582713+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" {\n"} +{"Time":"2020-04-21T17:18:05.582721+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:05.582728+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"id\": 34,\n"} +{"Time":"2020-04-21T17:18:05.582733+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:18:05.582738+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:18:05.582749+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:18:05.582755+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" },\n"} +{"Time":"2020-04-21T17:18:05.582761+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:18:05.582766+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:18:05.582771+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" },\n"} +{"Time":"2020-04-21T17:18:05.582776+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:18:05.582782+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:18:05.582787+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:18:05.582804+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"traceID\": \"7748a4f86cf63cfeeb99e9f7c81845a0\",\n"} +{"Time":"2020-04-21T17:18:05.58281+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:18:05.582816+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:18:05.582821+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" ]\n"} +{"Time":"2020-04-21T17:18:05.582825+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" },\n"} +{"Time":"2020-04-21T17:18:05.58283+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:18:05.582836+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:18:05.582841+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" }\n"} +{"Time":"2020-04-21T17:18:05.582846+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" }\n"} +{"Time":"2020-04-21T17:18:05.582851+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" get_member_test.go:59: \n"} +{"Time":"2020-04-21T17:18:05.582861+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \tError Trace:\tget_member_test.go:59\n"} +{"Time":"2020-04-21T17:18:05.582867+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \tError: \tNot equal: \n"} +{"Time":"2020-04-21T17:18:05.582872+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \t \texpected: -31103\n"} +{"Time":"2020-04-21T17:18:05.582877+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \t \tactual : -31600\n"} +{"Time":"2020-04-21T17:18:05.582882+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Output":" \tTest: \tTestGetNotExistMember\n"} +{"Time":"2020-04-21T17:18:05.582888+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetNotExistMember","Elapsed":0.14} +{"Time":"2020-04-21T17:18:05.582896+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember"} +{"Time":"2020-04-21T17:18:05.582923+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember","Output":"=== RUN TestGetBootstrapMember\n"} +{"Time":"2020-04-21T17:18:05.58296+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json"} +{"Time":"2020-04-21T17:18:05.582966+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"=== RUN TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json\n"} +{"Time":"2020-04-21T17:18:05.582972+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"2020/04/21 17:18:05 [ loadMemberKeys ] could't load member keys: open /tmp/alfa-keys/application_incentives_11_member_keys.json: no such file or directory\n"} +{"Time":"2020-04-21T17:18:05.584961+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"panic: [ loadMemberKeys ] could't load member keys: open /tmp/alfa-keys/application_incentives_11_member_keys.json: no such file or directory [recovered]\n"} +{"Time":"2020-04-21T17:18:05.584988+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"\tpanic: [ loadMemberKeys ] could't load member keys: open /tmp/alfa-keys/application_incentives_11_member_keys.json: no such file or directory\n"} +{"Time":"2020-04-21T17:18:05.584996+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"\n"} +{"Time":"2020-04-21T17:18:05.585002+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"goroutine 175 [running]:\n"} +{"Time":"2020-04-21T17:18:05.585016+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"testing.tRunner.func1(0xc000100600)\n"} +{"Time":"2020-04-21T17:18:05.585023+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"\t/usr/local/go/src/testing/testing.go:874 +0x3a3\n"} +{"Time":"2020-04-21T17:18:05.585029+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"panic(0x1f28640, 0xc0002b6a90)\n"} +{"Time":"2020-04-21T17:18:05.585039+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"\t/usr/local/go/src/runtime/panic.go:679 +0x1b2\n"} +{"Time":"2020-04-21T17:18:05.585044+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"log.Panic(0xc0001114e0, 0x1, 0x1)\n"} +{"Time":"2020-04-21T17:18:05.58505+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"\t/usr/local/go/src/log/log.go:338 +0xac\n"} +{"Time":"2020-04-21T17:18:05.585055+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"github.com/insolar/go-autotests/apitests/apihelper/keysfactory.LoadMemberKeys(0xc000100600, 0x216c959, 0x2a, 0x0, 0x0, 0x0, 0x0)\n"} +{"Time":"2020-04-21T17:18:05.585064+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"\t/Users/dmitryshidlovsky/go/src/github.com/insolar/go-autotests/apitests/apihelper/keysfactory/keysfactory.go:35 +0x6c1\n"} +{"Time":"2020-04-21T17:18:05.585084+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"github.com/insolar/go-autotests/apitests/tests/insolarapi.TestGetBootstrapMember.func1(0xc000100600)\n"} +{"Time":"2020-04-21T17:18:05.585091+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"\t/Users/dmitryshidlovsky/go/src/github.com/insolar/go-autotests/apitests/tests/insolarapi/get_member_test.go:79 +0x58\n"} +{"Time":"2020-04-21T17:18:05.5851+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"testing.tRunner(0xc000100600, 0xc0002b6980)\n"} +{"Time":"2020-04-21T17:18:05.585107+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"\t/usr/local/go/src/testing/testing.go:909 +0xc9\n"} +{"Time":"2020-04-21T17:18:05.58513+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"created by testing.(*T).Run\n"} +{"Time":"2020-04-21T17:18:05.585138+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"\t/usr/local/go/src/testing/testing.go:960 +0x350\n"} +{"Time":"2020-04-21T17:18:05.587219+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Output":"FAIL\tgithub.com/insolar/go-autotests/apitests/tests/insolarapi\t3.933s\n"} +{"Time":"2020-04-21T17:18:05.587266+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/insolarapi","Test":"TestGetBootstrapMember/get_member_with_key_application_incentives_11_member_keys.json","Elapsed":3.933} +{"Time":"2020-04-21T17:18:08.047879+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMemberTransferToAccount"} +{"Time":"2020-04-21T17:18:08.048116+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMemberTransferToAccount","Output":"=== RUN TestManyDepositsInOneMemberTransferToAccount\n"} +{"Time":"2020-04-21T17:18:08.048125+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMemberTransferToAccount","Output":"=== PAUSE TestManyDepositsInOneMemberTransferToAccount\n"} +{"Time":"2020-04-21T17:18:08.048129+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMemberTransferToAccount"} +{"Time":"2020-04-21T17:18:08.048135+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash"} +{"Time":"2020-04-21T17:18:08.048138+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":"=== RUN TestTransferToAccountWithOtherEthHash\n"} +{"Time":"2020-04-21T17:18:08.048148+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":"=== PAUSE TestTransferToAccountWithOtherEthHash\n"} +{"Time":"2020-04-21T17:18:08.048151+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash"} +{"Time":"2020-04-21T17:18:08.048156+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositTransferBadAmount"} +{"Time":"2020-04-21T17:18:08.048162+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositTransferBadAmount","Output":"=== RUN TestDepositTransferBadAmount\n"} +{"Time":"2020-04-21T17:18:08.048178+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositTransferBadAmount","Output":"=== PAUSE TestDepositTransferBadAmount\n"} +{"Time":"2020-04-21T17:18:08.048182+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositTransferBadAmount"} +{"Time":"2020-04-21T17:18:08.048185+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash"} +{"Time":"2020-04-21T17:18:08.048189+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":"=== RUN TestTransferToAccountWithRandomHash\n"} +{"Time":"2020-04-21T17:18:08.048192+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":"=== PAUSE TestTransferToAccountWithRandomHash\n"} +{"Time":"2020-04-21T17:18:08.048194+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash"} +{"Time":"2020-04-21T17:18:08.048197+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash"} +{"Time":"2020-04-21T17:18:08.048202+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":"=== RUN TestTransferToAccountWithHardcodedHash\n"} +{"Time":"2020-04-21T17:18:08.048214+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":"=== PAUSE TestTransferToAccountWithHardcodedHash\n"} +{"Time":"2020-04-21T17:18:08.048217+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash"} +{"Time":"2020-04-21T17:18:08.04822+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFutureNetworkIncentivesTransferDeposit"} +{"Time":"2020-04-21T17:18:08.048224+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFutureNetworkIncentivesTransferDeposit","Output":"=== RUN TestGetFutureNetworkIncentivesTransferDeposit\n"} +{"Time":"2020-04-21T17:18:08.048237+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFutureNetworkIncentivesTransferDeposit","Output":"--- SKIP: TestGetFutureNetworkIncentivesTransferDeposit (0.00s)\n"} +{"Time":"2020-04-21T17:18:08.048245+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFutureNetworkIncentivesTransferDeposit","Output":" e2e_deposit_transfer_test.go:157: test will succeed after 01/03/20\n"} +{"Time":"2020-04-21T17:18:08.048255+03:00","Action":"skip","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetFutureNetworkIncentivesTransferDeposit","Elapsed":0} +{"Time":"2020-04-21T17:18:08.048265+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransfer"} +{"Time":"2020-04-21T17:18:08.048268+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransfer","Output":"=== RUN TestMemberBalanceAfterMigrationAndTransfer\n"} +{"Time":"2020-04-21T17:18:08.048271+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransfer","Output":"=== PAUSE TestMemberBalanceAfterMigrationAndTransfer\n"} +{"Time":"2020-04-21T17:18:08.048275+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransfer"} +{"Time":"2020-04-21T17:18:08.048278+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransferCfg"} +{"Time":"2020-04-21T17:18:08.048284+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransferCfg","Output":"=== RUN TestMemberBalanceAfterMigrationAndTransferCfg\n"} +{"Time":"2020-04-21T17:18:08.048287+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransferCfg","Output":"=== PAUSE TestMemberBalanceAfterMigrationAndTransferCfg\n"} +{"Time":"2020-04-21T17:18:08.04829+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransferCfg"} +{"Time":"2020-04-21T17:18:08.048292+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositMigrationTable"} +{"Time":"2020-04-21T17:18:08.0483+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositMigrationTable","Output":"=== RUN TestDepositMigrationTable\n"} +{"Time":"2020-04-21T17:18:08.048307+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositMigrationTable","Output":"=== PAUSE TestDepositMigrationTable\n"} +{"Time":"2020-04-21T17:18:08.048314+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositMigrationTable"} +{"Time":"2020-04-21T17:18:08.048317+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodObserver"} +{"Time":"2020-04-21T17:18:08.048321+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodObserver","Output":"=== RUN TestMigrationDepositHoldPeriodObserver\n"} +{"Time":"2020-04-21T17:18:08.048328+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodObserver","Output":"=== PAUSE TestMigrationDepositHoldPeriodObserver\n"} +{"Time":"2020-04-21T17:18:08.048332+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodObserver"} +{"Time":"2020-04-21T17:18:08.048335+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositToTwoMembers"} +{"Time":"2020-04-21T17:18:08.048337+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositToTwoMembers","Output":"=== RUN TestMigrationDepositToTwoMembers\n"} +{"Time":"2020-04-21T17:18:08.04834+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositToTwoMembers","Output":"=== PAUSE TestMigrationDepositToTwoMembers\n"} +{"Time":"2020-04-21T17:18:08.048343+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositToTwoMembers"} +{"Time":"2020-04-21T17:18:08.048346+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberAfterDepositTransfer"} +{"Time":"2020-04-21T17:18:08.048348+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberAfterDepositTransfer","Output":"=== RUN TestGetMemberAfterDepositTransfer\n"} +{"Time":"2020-04-21T17:18:08.048351+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberAfterDepositTransfer","Output":"=== PAUSE TestGetMemberAfterDepositTransfer\n"} +{"Time":"2020-04-21T17:18:08.048354+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberAfterDepositTransfer"} +{"Time":"2020-04-21T17:18:08.048357+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberAfterMigrationAndTransfer"} +{"Time":"2020-04-21T17:18:08.048359+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberAfterMigrationAndTransfer","Output":"=== RUN TestMemberAfterMigrationAndTransfer\n"} +{"Time":"2020-04-21T17:18:08.048362+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberAfterMigrationAndTransfer","Output":"=== PAUSE TestMemberAfterMigrationAndTransfer\n"} +{"Time":"2020-04-21T17:18:08.048365+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberAfterMigrationAndTransfer"} +{"Time":"2020-04-21T17:18:08.048368+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithDepositConfirmedByOneDaemon"} +{"Time":"2020-04-21T17:18:08.048371+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithDepositConfirmedByOneDaemon","Output":"=== RUN TestMemberWithDepositConfirmedByOneDaemon\n"} +{"Time":"2020-04-21T17:18:08.048379+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithDepositConfirmedByOneDaemon","Output":"=== PAUSE TestMemberWithDepositConfirmedByOneDaemon\n"} +{"Time":"2020-04-21T17:18:08.048382+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithDepositConfirmedByOneDaemon"} +{"Time":"2020-04-21T17:18:08.048384+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithOtherApproveDeposit"} +{"Time":"2020-04-21T17:18:08.048387+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithOtherApproveDeposit","Output":"=== RUN TestMemberWithOtherApproveDeposit\n"} +{"Time":"2020-04-21T17:18:08.048392+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithOtherApproveDeposit","Output":"=== PAUSE TestMemberWithOtherApproveDeposit\n"} +{"Time":"2020-04-21T17:18:08.048395+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithOtherApproveDeposit"} +{"Time":"2020-04-21T17:18:08.048398+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInMember"} +{"Time":"2020-04-21T17:18:08.0484+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInMember","Output":"=== RUN TestManyDepositsInMember\n"} +{"Time":"2020-04-21T17:18:08.359483+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInMember","Output":"--- FAIL: TestManyDepositsInMember (0.31s)\n"} +{"Time":"2020-04-21T17:18:08.35951+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInMember","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:08.359517+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInMember","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:08.359524+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInMember","Output":" \t \t\t\t\te2e_member_test.go:224\n"} +{"Time":"2020-04-21T17:18:08.359529+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInMember","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:08.359534+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInMember","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:08.359539+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInMember","Output":" \tTest: \tTestManyDepositsInMember\n"} +{"Time":"2020-04-21T17:18:08.359544+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInMember","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:08.359559+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInMember","Elapsed":0.31} +{"Time":"2020-04-21T17:18:08.359567+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMember"} +{"Time":"2020-04-21T17:18:08.359572+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMember","Output":"=== RUN TestManyDepositsInOneMember\n"} +{"Time":"2020-04-21T17:18:08.359581+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMember","Output":"=== PAUSE TestManyDepositsInOneMember\n"} +{"Time":"2020-04-21T17:18:08.359586+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMember"} +{"Time":"2020-04-21T17:18:08.359593+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberTransactionsToAccount"} +{"Time":"2020-04-21T17:18:08.3596+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberTransactionsToAccount","Output":"=== RUN TestGetMemberTransactionsToAccount\n"} +{"Time":"2020-04-21T17:18:08.35961+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberTransactionsToAccount","Output":"=== PAUSE TestGetMemberTransactionsToAccount\n"} +{"Time":"2020-04-21T17:18:08.359618+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberTransactionsToAccount"} +{"Time":"2020-04-21T17:18:08.359623+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer"} +{"Time":"2020-04-21T17:18:08.359632+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":"=== RUN TestNetworkStatsMigrateDepositTransfer\n"} +{"Time":"2020-04-21T17:18:08.50053+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":"--- FAIL: TestNetworkStatsMigrateDepositTransfer (0.14s)\n"} +{"Time":"2020-04-21T17:18:08.500569+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" e2e_observer_test.go:31: C875\tУспешное получение статистики, если создан мембер + миграция на депозит + трансфер на аккаунт, проверка accounts =+1, transactions=+2\n"} +{"Time":"2020-04-21T17:18:08.5006+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:18:08.500621+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" apilogger.go:35: GET https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/stats/network\n"} +{"Time":"2020-04-21T17:18:08.500632+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:18:08.500649+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:18:08.500662+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:18:08.500671+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:18:08.500679+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:18:08.500688+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:18:08.500698+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" {\n"} +{"Time":"2020-04-21T17:18:08.500708+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" \"totalTransactions\": 109,\n"} +{"Time":"2020-04-21T17:18:08.50072+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" \"accounts\": 169,\n"} +{"Time":"2020-04-21T17:18:08.500731+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" \"nodes\": 11,\n"} +{"Time":"2020-04-21T17:18:08.500742+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" \"currentTPS\": 0,\n"} +{"Time":"2020-04-21T17:18:08.50076+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" \"maxTPS\": 7,\n"} +{"Time":"2020-04-21T17:18:08.500794+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" \"lastMonthTransactions\": 108\n"} +{"Time":"2020-04-21T17:18:08.500801+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.500807+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:08.500813+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:08.50082+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" \t \t\t\t\tunhold_deposit_utils.go:18\n"} +{"Time":"2020-04-21T17:18:08.500828+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" \t \t\t\t\te2e_observer_test.go:33\n"} +{"Time":"2020-04-21T17:18:08.500836+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:08.500843+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:08.50085+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" \tTest: \tTestNetworkStatsMigrateDepositTransfer\n"} +{"Time":"2020-04-21T17:18:08.500858+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:08.500866+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestNetworkStatsMigrateDepositTransfer","Elapsed":0.14} +{"Time":"2020-04-21T17:18:08.500876+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodPlatform"} +{"Time":"2020-04-21T17:18:08.500883+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodPlatform","Output":"=== RUN TestMigrationDepositHoldPeriodPlatform\n"} +{"Time":"2020-04-21T17:18:08.500896+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodPlatform","Output":"=== PAUSE TestMigrationDepositHoldPeriodPlatform\n"} +{"Time":"2020-04-21T17:18:08.500903+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodPlatform"} +{"Time":"2020-04-21T17:18:08.500911+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable"} +{"Time":"2020-04-21T17:18:08.500919+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":"=== RUN TestTransferTable\n"} +{"Time":"2020-04-21T17:18:08.500933+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":"=== PAUSE TestTransferTable\n"} +{"Time":"2020-04-21T17:18:08.50094+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable"} +{"Time":"2020-04-21T17:18:08.500945+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchTransferToDeposit"} +{"Time":"2020-04-21T17:18:08.500949+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchTransferToDeposit","Output":"=== RUN TestTransactionsSearchTransferToDeposit\n"} +{"Time":"2020-04-21T17:18:08.500955+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchTransferToDeposit","Output":"=== PAUSE TestTransactionsSearchTransferToDeposit\n"} +{"Time":"2020-04-21T17:18:08.500961+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchTransferToDeposit"} +{"Time":"2020-04-21T17:18:08.500966+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchDepositTransferToAccount"} +{"Time":"2020-04-21T17:18:08.500971+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchDepositTransferToAccount","Output":"=== RUN TestTransactionsSearchDepositTransferToAccount\n"} +{"Time":"2020-04-21T17:18:08.500978+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchDepositTransferToAccount","Output":"=== PAUSE TestTransactionsSearchDepositTransferToAccount\n"} +{"Time":"2020-04-21T17:18:08.500985+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchDepositTransferToAccount"} +{"Time":"2020-04-21T17:18:08.500992+03:00","Action":"run","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionDepositTransferToAccount"} +{"Time":"2020-04-21T17:18:08.501005+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionDepositTransferToAccount","Output":"=== RUN TestTransactionDepositTransferToAccount\n"} +{"Time":"2020-04-21T17:18:08.501014+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionDepositTransferToAccount","Output":"=== PAUSE TestTransactionDepositTransferToAccount\n"} +{"Time":"2020-04-21T17:18:08.501024+03:00","Action":"pause","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionDepositTransferToAccount"} +{"Time":"2020-04-21T17:18:08.501035+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMemberTransferToAccount"} +{"Time":"2020-04-21T17:18:08.501043+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMemberTransferToAccount","Output":"=== CONT TestManyDepositsInOneMemberTransferToAccount\n"} +{"Time":"2020-04-21T17:18:08.501052+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberAfterMigrationAndTransfer"} +{"Time":"2020-04-21T17:18:08.501058+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberAfterMigrationAndTransfer","Output":"=== CONT TestMemberAfterMigrationAndTransfer\n"} +{"Time":"2020-04-21T17:18:08.50107+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash"} +{"Time":"2020-04-21T17:18:08.501078+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":"=== CONT TestTransferToAccountWithHardcodedHash\n"} +{"Time":"2020-04-21T17:18:08.50109+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransferCfg"} +{"Time":"2020-04-21T17:18:08.501099+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransferCfg","Output":"=== CONT TestMemberBalanceAfterMigrationAndTransferCfg\n"} +{"Time":"2020-04-21T17:18:08.501107+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberAfterDepositTransfer"} +{"Time":"2020-04-21T17:18:08.501114+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberAfterDepositTransfer","Output":"=== CONT TestGetMemberAfterDepositTransfer\n"} +{"Time":"2020-04-21T17:18:08.501122+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositToTwoMembers"} +{"Time":"2020-04-21T17:18:08.50113+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositToTwoMembers","Output":"=== CONT TestMigrationDepositToTwoMembers\n"} +{"Time":"2020-04-21T17:18:08.502053+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodObserver"} +{"Time":"2020-04-21T17:18:08.5021+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodObserver","Output":"=== CONT TestMigrationDepositHoldPeriodObserver\n"} +{"Time":"2020-04-21T17:18:08.502133+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositMigrationTable"} +{"Time":"2020-04-21T17:18:08.502148+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositMigrationTable","Output":"=== CONT TestDepositMigrationTable\n"} +{"Time":"2020-04-21T17:18:08.50224+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash"} +{"Time":"2020-04-21T17:18:08.502305+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":"=== CONT TestTransferToAccountWithRandomHash\n"} +{"Time":"2020-04-21T17:18:08.502322+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransfer"} +{"Time":"2020-04-21T17:18:08.502329+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransfer","Output":"=== CONT TestMemberBalanceAfterMigrationAndTransfer\n"} +{"Time":"2020-04-21T17:18:08.502464+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable"} +{"Time":"2020-04-21T17:18:08.502485+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":"=== CONT TestTransferTable\n"} +{"Time":"2020-04-21T17:18:08.502523+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionDepositTransferToAccount"} +{"Time":"2020-04-21T17:18:08.50254+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionDepositTransferToAccount","Output":"=== CONT TestTransactionDepositTransferToAccount\n"} +{"Time":"2020-04-21T17:18:08.566464+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMemberTransferToAccount","Output":"--- FAIL: TestManyDepositsInOneMemberTransferToAccount (0.07s)\n"} +{"Time":"2020-04-21T17:18:08.566492+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMemberTransferToAccount","Output":" e2e_deposit_transfer_test.go:39: C4824\tУспешный перевод с 1 депозита на аккаунт, если у мембера 2 депозита\n"} +{"Time":"2020-04-21T17:18:08.566508+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMemberTransferToAccount","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:08.566514+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMemberTransferToAccount","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:08.566518+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMemberTransferToAccount","Output":" \t \t\t\t\te2e_deposit_transfer_test.go:40\n"} +{"Time":"2020-04-21T17:18:08.566522+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMemberTransferToAccount","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:08.566535+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMemberTransferToAccount","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:08.56654+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMemberTransferToAccount","Output":" \tTest: \tTestManyDepositsInOneMemberTransferToAccount\n"} +{"Time":"2020-04-21T17:18:08.566545+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMemberTransferToAccount","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:08.566552+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMemberTransferToAccount","Elapsed":0.07} +{"Time":"2020-04-21T17:18:08.566559+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchDepositTransferToAccount"} +{"Time":"2020-04-21T17:18:08.566563+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchDepositTransferToAccount","Output":"=== CONT TestTransactionsSearchDepositTransferToAccount\n"} +{"Time":"2020-04-21T17:18:08.569993+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositToTwoMembers","Output":"--- FAIL: TestMigrationDepositToTwoMembers (0.07s)\n"} +{"Time":"2020-04-21T17:18:08.570008+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositToTwoMembers","Output":" e2e_member_test.go:50: C912\tУспешное получение депозитов, если с одного ethHash отправлено 2 транзакции 2-м разным мемберам\n"} +{"Time":"2020-04-21T17:18:08.570015+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositToTwoMembers","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:08.57002+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositToTwoMembers","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:08.570024+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositToTwoMembers","Output":" \t \t\t\t\te2e_member_test.go:51\n"} +{"Time":"2020-04-21T17:18:08.570028+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositToTwoMembers","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:08.570032+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositToTwoMembers","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:08.570036+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositToTwoMembers","Output":" \tTest: \tTestMigrationDepositToTwoMembers\n"} +{"Time":"2020-04-21T17:18:08.570041+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositToTwoMembers","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:08.570045+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositToTwoMembers","Elapsed":0.07} +{"Time":"2020-04-21T17:18:08.570051+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchTransferToDeposit"} +{"Time":"2020-04-21T17:18:08.570055+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchTransferToDeposit","Output":"=== CONT TestTransactionsSearchTransferToDeposit\n"} +{"Time":"2020-04-21T17:18:08.572709+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodObserver","Output":"--- FAIL: TestMigrationDepositHoldPeriodObserver (0.07s)\n"} +{"Time":"2020-04-21T17:18:08.57272+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodObserver","Output":" e2e_member_test.go:44: C885\tУспешная разморозка депозита и трансфер на аккаунт, проверка относительно параметров bootstrap конфига\n"} +{"Time":"2020-04-21T17:18:08.572727+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodObserver","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:08.572737+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodObserver","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:08.57274+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodObserver","Output":" \t \t\t\t\tunhold_deposit_utils.go:39\n"} +{"Time":"2020-04-21T17:18:08.572744+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodObserver","Output":" \t \t\t\t\tunhold_deposit_utils.go:52\n"} +{"Time":"2020-04-21T17:18:08.572747+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodObserver","Output":" \t \t\t\t\te2e_member_test.go:45\n"} +{"Time":"2020-04-21T17:18:08.57275+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodObserver","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:08.572754+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodObserver","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:08.572758+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodObserver","Output":" \tTest: \tTestMigrationDepositHoldPeriodObserver\n"} +{"Time":"2020-04-21T17:18:08.572762+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodObserver","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:08.572766+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodObserver","Elapsed":0.07} +{"Time":"2020-04-21T17:18:08.57277+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositTransferBadAmount"} +{"Time":"2020-04-21T17:18:08.572773+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositTransferBadAmount","Output":"=== CONT TestDepositTransferBadAmount\n"} +{"Time":"2020-04-21T17:18:08.576652+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransferCfg","Output":"--- FAIL: TestMemberBalanceAfterMigrationAndTransferCfg (0.08s)\n"} +{"Time":"2020-04-21T17:18:08.576666+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransferCfg","Output":" e2e_member_balance_test.go:43: C910\t[bootstrap.yaml]Успешное получение балланса мембера, если он был создан через migrationCreateMember + миграция(api), проверка разморозки депозитов и трансфер на аккаунт\n"} +{"Time":"2020-04-21T17:18:08.576672+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransferCfg","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:08.576676+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransferCfg","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:08.576683+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransferCfg","Output":" \t \t\t\t\tunhold_deposit_utils.go:39\n"} +{"Time":"2020-04-21T17:18:08.576687+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransferCfg","Output":" \t \t\t\t\te2e_member_balance_test.go:44\n"} +{"Time":"2020-04-21T17:18:08.57669+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransferCfg","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:08.576693+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransferCfg","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:08.576696+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransferCfg","Output":" \tTest: \tTestMemberBalanceAfterMigrationAndTransferCfg\n"} +{"Time":"2020-04-21T17:18:08.576702+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransferCfg","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:08.576706+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransferCfg","Elapsed":0.08} +{"Time":"2020-04-21T17:18:08.57671+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMember"} +{"Time":"2020-04-21T17:18:08.576713+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMember","Output":"=== CONT TestManyDepositsInOneMember\n"} +{"Time":"2020-04-21T17:18:08.576962+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionDepositTransferToAccount","Output":"--- FAIL: TestTransactionDepositTransferToAccount (0.07s)\n"} +{"Time":"2020-04-21T17:18:08.576982+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionDepositTransferToAccount","Output":" e2e_transaction_test.go:32: C858\tУспешное получение транзакции, если transfer депозита на аккаунт\n"} +{"Time":"2020-04-21T17:18:08.576988+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionDepositTransferToAccount","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:08.576995+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionDepositTransferToAccount","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:08.576998+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionDepositTransferToAccount","Output":" \t \t\t\t\tunhold_deposit_utils.go:18\n"} +{"Time":"2020-04-21T17:18:08.577001+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionDepositTransferToAccount","Output":" \t \t\t\t\te2e_transaction_test.go:33\n"} +{"Time":"2020-04-21T17:18:08.577004+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionDepositTransferToAccount","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:08.577007+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionDepositTransferToAccount","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:08.577018+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionDepositTransferToAccount","Output":" \tTest: \tTestTransactionDepositTransferToAccount\n"} +{"Time":"2020-04-21T17:18:08.577023+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionDepositTransferToAccount","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:08.577027+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionDepositTransferToAccount","Elapsed":0.07} +{"Time":"2020-04-21T17:18:08.57703+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodPlatform"} +{"Time":"2020-04-21T17:18:08.577056+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodPlatform","Output":"=== CONT TestMigrationDepositHoldPeriodPlatform\n"} +{"Time":"2020-04-21T17:18:08.577373+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberAfterMigrationAndTransfer","Output":"--- FAIL: TestMemberAfterMigrationAndTransfer (0.08s)\n"} +{"Time":"2020-04-21T17:18:08.577389+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberAfterMigrationAndTransfer","Output":" e2e_member_test.go:105: C844 [bootstrap.yaml]Успешное получение мембера, если он был создан через migrationCreateMember + миграция(api), проверка разморозки депозитов и трансфер на аккаунт\n"} +{"Time":"2020-04-21T17:18:08.577395+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberAfterMigrationAndTransfer","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:08.577399+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberAfterMigrationAndTransfer","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:08.577412+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberAfterMigrationAndTransfer","Output":" \t \t\t\t\tunhold_deposit_utils.go:39\n"} +{"Time":"2020-04-21T17:18:08.577417+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberAfterMigrationAndTransfer","Output":" \t \t\t\t\te2e_member_test.go:106\n"} +{"Time":"2020-04-21T17:18:08.577422+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberAfterMigrationAndTransfer","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:08.577428+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberAfterMigrationAndTransfer","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:08.577433+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberAfterMigrationAndTransfer","Output":" \tTest: \tTestMemberAfterMigrationAndTransfer\n"} +{"Time":"2020-04-21T17:18:08.577438+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberAfterMigrationAndTransfer","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:08.577444+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberAfterMigrationAndTransfer","Elapsed":0.08} +{"Time":"2020-04-21T17:18:08.57745+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberTransactionsToAccount"} +{"Time":"2020-04-21T17:18:08.577455+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberTransactionsToAccount","Output":"=== CONT TestGetMemberTransactionsToAccount\n"} +{"Time":"2020-04-21T17:18:08.578932+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositMigrationTable","Output":"--- FAIL: TestDepositMigrationTable (0.08s)\n"} +{"Time":"2020-04-21T17:18:08.578951+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositMigrationTable","Output":" e2e_member_test.go:38: C884\tУспешная разморозка депозита и трансфер на аккаунт, проверка относительно таймсампа создания депозита\n"} +{"Time":"2020-04-21T17:18:08.578961+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositMigrationTable","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:08.578965+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositMigrationTable","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:08.578968+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositMigrationTable","Output":" \t \t\t\t\tunhold_deposit_utils.go:18\n"} +{"Time":"2020-04-21T17:18:08.578971+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositMigrationTable","Output":" \t \t\t\t\tunhold_deposit_utils.go:31\n"} +{"Time":"2020-04-21T17:18:08.578975+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositMigrationTable","Output":" \t \t\t\t\te2e_member_test.go:39\n"} +{"Time":"2020-04-21T17:18:08.578978+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositMigrationTable","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:08.578981+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositMigrationTable","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:08.578984+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositMigrationTable","Output":" \tTest: \tTestDepositMigrationTable\n"} +{"Time":"2020-04-21T17:18:08.578987+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositMigrationTable","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:08.578991+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositMigrationTable","Elapsed":0.08} +{"Time":"2020-04-21T17:18:08.578996+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash"} +{"Time":"2020-04-21T17:18:08.579001+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":"=== CONT TestTransferToAccountWithOtherEthHash\n"} +{"Time":"2020-04-21T17:18:08.625995+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransfer","Output":"--- FAIL: TestMemberBalanceAfterMigrationAndTransfer (0.12s)\n"} +{"Time":"2020-04-21T17:18:08.626065+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransfer","Output":" e2e_member_balance_test.go:31: C849\tУспешное получение балланса, если мембер был создан через migrationCreateMember + миграция(api) + deposit.transfer на аккаунт\n"} +{"Time":"2020-04-21T17:18:08.626078+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransfer","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:08.626085+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransfer","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:08.626091+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransfer","Output":" \t \t\t\t\tunhold_deposit_utils.go:18\n"} +{"Time":"2020-04-21T17:18:08.626098+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransfer","Output":" \t \t\t\t\te2e_member_balance_test.go:32\n"} +{"Time":"2020-04-21T17:18:08.626104+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransfer","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:08.626131+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransfer","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:08.626141+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransfer","Output":" \tTest: \tTestMemberBalanceAfterMigrationAndTransfer\n"} +{"Time":"2020-04-21T17:18:08.626147+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransfer","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:08.626157+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberBalanceAfterMigrationAndTransfer","Elapsed":0.12} +{"Time":"2020-04-21T17:18:08.626165+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithOtherApproveDeposit"} +{"Time":"2020-04-21T17:18:08.626172+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithOtherApproveDeposit","Output":"=== CONT TestMemberWithOtherApproveDeposit\n"} +{"Time":"2020-04-21T17:18:08.626184+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberAfterDepositTransfer","Output":"--- FAIL: TestGetMemberAfterDepositTransfer (0.13s)\n"} +{"Time":"2020-04-21T17:18:08.62619+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberAfterDepositTransfer","Output":" e2e_member_test.go:94: C843\tУспешное получение мембера, если он был создан через migrationCreateMember + миграция(api), проверка разморозки депозитов и трансфер на аккаунт\n"} +{"Time":"2020-04-21T17:18:08.626197+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberAfterDepositTransfer","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:08.626202+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberAfterDepositTransfer","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:08.626207+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberAfterDepositTransfer","Output":" \t \t\t\t\tunhold_deposit_utils.go:18\n"} +{"Time":"2020-04-21T17:18:08.626212+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberAfterDepositTransfer","Output":" \t \t\t\t\te2e_member_test.go:95\n"} +{"Time":"2020-04-21T17:18:08.626217+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberAfterDepositTransfer","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:08.626223+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberAfterDepositTransfer","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:08.62623+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberAfterDepositTransfer","Output":" \tTest: \tTestGetMemberAfterDepositTransfer\n"} +{"Time":"2020-04-21T17:18:08.626239+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberAfterDepositTransfer","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:08.626248+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberAfterDepositTransfer","Elapsed":0.13} +{"Time":"2020-04-21T17:18:08.626256+03:00","Action":"cont","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithDepositConfirmedByOneDaemon"} +{"Time":"2020-04-21T17:18:08.626264+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithDepositConfirmedByOneDaemon","Output":"=== CONT TestMemberWithDepositConfirmedByOneDaemon\n"} +{"Time":"2020-04-21T17:18:08.632261+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchDepositTransferToAccount","Output":"--- FAIL: TestTransactionsSearchDepositTransferToAccount (0.07s)\n"} +{"Time":"2020-04-21T17:18:08.632298+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchDepositTransferToAccount","Output":" e2e_transaction_search_test.go:81: C863\tУспешный поиск по транзакциям, если создан мембер migrationCreateMember + миграция(api)+ deposit.transfer, отображение транзакции перевода на аккаунт\n"} +{"Time":"2020-04-21T17:18:08.632316+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchDepositTransferToAccount","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:08.632323+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchDepositTransferToAccount","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:08.632328+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchDepositTransferToAccount","Output":" \t \t\t\t\tunhold_deposit_utils.go:18\n"} +{"Time":"2020-04-21T17:18:08.632333+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchDepositTransferToAccount","Output":" \t \t\t\t\te2e_transaction_search_test.go:82\n"} +{"Time":"2020-04-21T17:18:08.632339+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchDepositTransferToAccount","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:08.632345+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchDepositTransferToAccount","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:08.63235+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchDepositTransferToAccount","Output":" \tTest: \tTestTransactionsSearchDepositTransferToAccount\n"} +{"Time":"2020-04-21T17:18:08.632355+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchDepositTransferToAccount","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:08.646546+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchDepositTransferToAccount","Elapsed":0.07} +{"Time":"2020-04-21T17:18:08.646572+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberTransactionsToAccount","Output":"--- FAIL: TestGetMemberTransactionsToAccount (0.07s)\n"} +{"Time":"2020-04-21T17:18:08.646588+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberTransactionsToAccount","Output":" e2e_member_transactions_test.go:31: C854 Успешное получение списка транзакций, если создан мембер migrationCreateMember + миграция(api)+ deposit.transfer, отображение транзакции перевода на аккаунт\n"} +{"Time":"2020-04-21T17:18:08.646599+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberTransactionsToAccount","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:08.646604+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberTransactionsToAccount","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:08.646608+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberTransactionsToAccount","Output":" \t \t\t\t\tunhold_deposit_utils.go:18\n"} +{"Time":"2020-04-21T17:18:08.646612+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberTransactionsToAccount","Output":" \t \t\t\t\te2e_member_transactions_test.go:32\n"} +{"Time":"2020-04-21T17:18:08.646617+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberTransactionsToAccount","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:08.646621+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberTransactionsToAccount","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:08.646625+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberTransactionsToAccount","Output":" \tTest: \tTestGetMemberTransactionsToAccount\n"} +{"Time":"2020-04-21T17:18:08.646629+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberTransactionsToAccount","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:08.646883+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestGetMemberTransactionsToAccount","Elapsed":0.07} +{"Time":"2020-04-21T17:18:08.646913+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMember","Output":"--- FAIL: TestManyDepositsInOneMember (0.07s)\n"} +{"Time":"2020-04-21T17:18:08.646921+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMember","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:08.646928+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMember","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:08.646934+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMember","Output":" \t \t\t\t\te2e_member_test.go:270\n"} +{"Time":"2020-04-21T17:18:08.646938+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMember","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:08.646942+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMember","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:08.646946+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMember","Output":" \tTest: \tTestManyDepositsInOneMember\n"} +{"Time":"2020-04-21T17:18:08.64695+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMember","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:08.64753+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestManyDepositsInOneMember","Elapsed":0.07} +{"Time":"2020-04-21T17:18:08.647551+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchTransferToDeposit","Output":"--- FAIL: TestTransactionsSearchTransferToDeposit (0.08s)\n"} +{"Time":"2020-04-21T17:18:08.647558+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchTransferToDeposit","Output":" e2e_transaction_search_test.go:38: C862 Успешный поиск по транзакциям, если создан мембер migrationCreateMember + миграция(api), отображение транзакции перевода на депозит\n"} +{"Time":"2020-04-21T17:18:08.647565+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchTransferToDeposit","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:08.647569+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchTransferToDeposit","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:08.647573+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchTransferToDeposit","Output":" \t \t\t\t\te2e_transaction_search_test.go:39\n"} +{"Time":"2020-04-21T17:18:08.647581+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchTransferToDeposit","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:08.647585+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchTransferToDeposit","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:08.64759+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchTransferToDeposit","Output":" \tTest: \tTestTransactionsSearchTransferToDeposit\n"} +{"Time":"2020-04-21T17:18:08.647594+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchTransferToDeposit","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:08.648031+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransactionsSearchTransferToDeposit","Elapsed":0.08} +{"Time":"2020-04-21T17:18:08.648049+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodPlatform","Output":"--- FAIL: TestMigrationDepositHoldPeriodPlatform (0.07s)\n"} +{"Time":"2020-04-21T17:18:08.648066+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodPlatform","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:08.648073+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodPlatform","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:08.648078+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodPlatform","Output":" \t \t\t\t\te2e_platform_test.go:41\n"} +{"Time":"2020-04-21T17:18:08.648082+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodPlatform","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:08.648086+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodPlatform","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:08.648091+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodPlatform","Output":" \tTest: \tTestMigrationDepositHoldPeriodPlatform\n"} +{"Time":"2020-04-21T17:18:08.648095+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodPlatform","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:08.649839+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMigrationDepositHoldPeriodPlatform","Elapsed":0.07} +{"Time":"2020-04-21T17:18:08.649867+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositTransferBadAmount","Output":"--- FAIL: TestDepositTransferBadAmount (0.08s)\n"} +{"Time":"2020-04-21T17:18:08.649874+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositTransferBadAmount","Output":" e2e_deposit_transfer_test.go:96: C4826\tОшибка перевода с депозита на аккаунт, если в запросе передана сумма больше чем amount депозита\n"} +{"Time":"2020-04-21T17:18:08.649881+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositTransferBadAmount","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:08.649885+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositTransferBadAmount","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:08.649889+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositTransferBadAmount","Output":" \t \t\t\t\te2e_deposit_transfer_test.go:97\n"} +{"Time":"2020-04-21T17:18:08.649894+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositTransferBadAmount","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:08.649919+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositTransferBadAmount","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:08.649932+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositTransferBadAmount","Output":" \tTest: \tTestDepositTransferBadAmount\n"} +{"Time":"2020-04-21T17:18:08.649938+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositTransferBadAmount","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:08.690487+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestDepositTransferBadAmount","Elapsed":0.08} +{"Time":"2020-04-21T17:18:08.690527+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithDepositConfirmedByOneDaemon","Output":"--- FAIL: TestMemberWithDepositConfirmedByOneDaemon (0.06s)\n"} +{"Time":"2020-04-21T17:18:08.690537+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithDepositConfirmedByOneDaemon","Output":" e2e_member_test.go:116: C911 Успешное получение мембера, если он был создан через migrationCreateMember+ одно подтверждение депозита, проверка что holdReleaseDate не установлен\n"} +{"Time":"2020-04-21T17:18:08.690545+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithDepositConfirmedByOneDaemon","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:08.69055+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithDepositConfirmedByOneDaemon","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:08.690556+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithDepositConfirmedByOneDaemon","Output":" \t \t\t\t\te2e_member_test.go:117\n"} +{"Time":"2020-04-21T17:18:08.690561+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithDepositConfirmedByOneDaemon","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:08.690579+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithDepositConfirmedByOneDaemon","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:08.690585+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithDepositConfirmedByOneDaemon","Output":" \tTest: \tTestMemberWithDepositConfirmedByOneDaemon\n"} +{"Time":"2020-04-21T17:18:08.69061+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithDepositConfirmedByOneDaemon","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:08.692676+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithDepositConfirmedByOneDaemon","Elapsed":0.06} +{"Time":"2020-04-21T17:18:08.692706+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithOtherApproveDeposit","Output":"--- FAIL: TestMemberWithOtherApproveDeposit (0.07s)\n"} +{"Time":"2020-04-21T17:18:08.692716+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithOtherApproveDeposit","Output":" e2e_member_test.go:150: C913\tОшибка подтверждения миграции, если не совпадает amount в подтверждениях демонов\n"} +{"Time":"2020-04-21T17:18:08.692724+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithOtherApproveDeposit","Output":" insolar_internal_api_wrapper.go:163: \n"} +{"Time":"2020-04-21T17:18:08.692729+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithOtherApproveDeposit","Output":" \tError Trace:\tinsolar_internal_api_wrapper.go:163\n"} +{"Time":"2020-04-21T17:18:08.692735+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithOtherApproveDeposit","Output":" \t \t\t\t\te2e_member_test.go:151\n"} +{"Time":"2020-04-21T17:18:08.69274+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithOtherApproveDeposit","Output":" \tError: \tReceived unexpected error:\n"} +{"Time":"2020-04-21T17:18:08.692745+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithOtherApproveDeposit","Output":" \t \t404 Not Found\n"} +{"Time":"2020-04-21T17:18:08.69275+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithOtherApproveDeposit","Output":" \tTest: \tTestMemberWithOtherApproveDeposit\n"} +{"Time":"2020-04-21T17:18:08.692755+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithOtherApproveDeposit","Output":" \tMessages: \tGetInfo returns an error\n"} +{"Time":"2020-04-21T17:18:08.705073+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestMemberWithOtherApproveDeposit","Elapsed":0.07} +{"Time":"2020-04-21T17:18:08.705092+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":"--- FAIL: TestTransferTable (0.20s)\n"} +{"Time":"2020-04-21T17:18:08.705103+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:18:08.705109+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" insolar_api_wrapper.go:126: Received seed: 3uCSomikEyHGQ2BMKK2jdNr1QhiG0gEZybMsiULMhFw=\n"} +{"Time":"2020-04-21T17:18:08.705115+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:18:08.70512+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:18:08.705136+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:18:08.705149+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:18:08.705159+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:18:08.705167+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:18:08.705197+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:18:08.705209+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" {\n"} +{"Time":"2020-04-21T17:18:08.705216+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:08.705227+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"id\": 13,\n"} +{"Time":"2020-04-21T17:18:08.705235+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:18:08.70524+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.705245+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:18:08.70525+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:18:08.705255+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:18:08.70526+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" {\n"} +{"Time":"2020-04-21T17:18:08.705265+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:08.705271+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"id\": 13,\n"} +{"Time":"2020-04-21T17:18:08.705276+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:18:08.705281+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"seed\": \"3uCSomikEyHGQ2BMKK2jdNr1QhiG0gEZybMsiULMhFw=\"\n"} +{"Time":"2020-04-21T17:18:08.705286+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.705291+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:18:08.705296+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:18:08.705304+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:18:08.705309+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:18:08.705314+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.705319+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:18:08.705324+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:18:08.705329+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.705334+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.705339+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:18:08.705344+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:18:08.705353+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:18:08.705358+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:18:08.705363+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:18:08.705368+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:18:08.705373+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:41: -H Digest: [SHA-256=K/87KCPfJsrKKtK25R+sG8c6nZG+LEr/rBXvwZT35OU=]\n"} +{"Time":"2020-04-21T17:18:08.705379+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEYCIQCadtybiyZcZFjf10iOyIXOlZcc9midmAZh/GgTfRbDHAIhALiT9vpgTts3MwdasUD1gzBRp4v+qI8yRsMyT0F1Qayl]\n"} +{"Time":"2020-04-21T17:18:08.705385+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:18:08.705392+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:18:08.705397+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" {\n"} +{"Time":"2020-04-21T17:18:08.705404+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:08.705412+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"id\": 24,\n"} +{"Time":"2020-04-21T17:18:08.705419+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:18:08.705425+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:18:08.70543+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"seed\": \"3uCSomikEyHGQ2BMKK2jdNr1QhiG0gEZybMsiULMhFw=\",\n"} +{"Time":"2020-04-21T17:18:08.705435+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"callSite\": \"member.create\",\n"} +{"Time":"2020-04-21T17:18:08.70544+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEctP5DwmmIbOM/UJ5V1sxUdq88ZAa\\nMKgQ4NMA6VftdszuLtoC7JS6jYuyHVy8Nzphth5DC3UqM1rinw2/mI8AnQ==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:18:08.705447+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.705451+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.705457+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:18:08.705463+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:18:08.705468+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:18:08.705473+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" {\n"} +{"Time":"2020-04-21T17:18:08.705478+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:08.705486+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"id\": 24,\n"} +{"Time":"2020-04-21T17:18:08.705495+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:18:08.7055+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:18:08.705505+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:18:08.705511+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.705518+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:18:08.705527+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:18:08.705532+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.705537+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:18:08.705547+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:18:08.705555+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:18:08.705568+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"traceID\": \"384339a89153f52f36b27b1f57626db6\",\n"} +{"Time":"2020-04-21T17:18:08.705574+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:18:08.705579+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:18:08.705589+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" ]\n"} +{"Time":"2020-04-21T17:18:08.705594+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.705598+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:18:08.705605+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:18:08.705613+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.70562+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.705625+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:18:08.70563+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:18:08.705644+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \t \t\t\t\tinsolar_api_wrapper.go:159\n"} +{"Time":"2020-04-21T17:18:08.705652+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \t \t\t\t\te2e_platform_test.go:113\n"} +{"Time":"2020-04-21T17:18:08.705657+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:18:08.705662+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \tTest: \tTestTransferTable\n"} +{"Time":"2020-04-21T17:18:08.705667+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:18:08.705726+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferTable","Elapsed":0.2} +{"Time":"2020-04-21T17:18:08.705732+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":"--- FAIL: TestTransferToAccountWithHardcodedHash (0.20s)\n"} +{"Time":"2020-04-21T17:18:08.705737+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" e2e_deposit_transfer_test.go:139: C4828 Ошибка перевода с депозита на аккаунт, если запрос отправляет обычный мембер, а ethHash=\"genesis_deposit\"\n"} +{"Time":"2020-04-21T17:18:08.705742+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:18:08.705746+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" insolar_api_wrapper.go:126: Received seed: Oa16J/V27uiDjjUhqSn/7j+0d0AYFB44sRffseWLa94=\n"} +{"Time":"2020-04-21T17:18:08.705751+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:18:08.70576+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:18:08.705764+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:18:08.705772+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:18:08.705778+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:18:08.705782+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:18:08.705785+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:18:08.705791+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" {\n"} +{"Time":"2020-04-21T17:18:08.705795+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:08.705799+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"id\": 12,\n"} +{"Time":"2020-04-21T17:18:08.705803+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:18:08.705807+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.70581+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:18:08.705815+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:18:08.705819+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:18:08.705823+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" {\n"} +{"Time":"2020-04-21T17:18:08.705826+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:08.70583+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"id\": 12,\n"} +{"Time":"2020-04-21T17:18:08.705834+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:18:08.705838+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"seed\": \"Oa16J/V27uiDjjUhqSn/7j+0d0AYFB44sRffseWLa94=\"\n"} +{"Time":"2020-04-21T17:18:08.705842+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.705846+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:18:08.70585+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:18:08.705857+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:18:08.705861+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:18:08.705865+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.705869+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:18:08.705873+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:18:08.705877+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.705881+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.705884+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:18:08.705888+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:18:08.705892+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:18:08.705896+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:18:08.7059+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:18:08.705904+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:18:08.705908+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:41: -H Digest: [SHA-256=ntrsEBPyKKCse7mNa8oQJb1/O0sFQE+uG1IMbbNyYkI=]\n"} +{"Time":"2020-04-21T17:18:08.705912+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEYCIQCey5rZF1llv2mBHHWYneOLHWymXy5Be7EWegqDlu7FvwIhAPH0lB6wwV62oNPQs8mmvVW0teR0jAwEQ4k86VMTn+vW]\n"} +{"Time":"2020-04-21T17:18:08.705917+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:18:08.705921+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:18:08.705925+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" {\n"} +{"Time":"2020-04-21T17:18:08.705928+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:08.705932+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"id\": 25,\n"} +{"Time":"2020-04-21T17:18:08.705941+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:18:08.705946+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:18:08.705949+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"seed\": \"Oa16J/V27uiDjjUhqSn/7j+0d0AYFB44sRffseWLa94=\",\n"} +{"Time":"2020-04-21T17:18:08.705954+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"callSite\": \"member.migrationCreate\",\n"} +{"Time":"2020-04-21T17:18:08.705958+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIikfvhaw244yIlQZa2tj9ysoV473\\njYIOCPQxJ+UooWZHCkMXnOqQrSlp7ln1vl7iOFaLJ0zZet7EHsZokQhs9g==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:18:08.705963+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.705967+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.706053+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:18:08.706058+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:18:08.706062+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:18:08.706066+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" {\n"} +{"Time":"2020-04-21T17:18:08.70607+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:08.706074+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"id\": 25,\n"} +{"Time":"2020-04-21T17:18:08.70609+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:18:08.706098+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:18:08.706103+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:18:08.706107+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.706111+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:18:08.706117+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:18:08.706123+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.706127+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:18:08.706131+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:18:08.706135+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:18:08.706139+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"traceID\": \"f94480c2099b83840ab80a2d505523b3\",\n"} +{"Time":"2020-04-21T17:18:08.706143+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:18:08.706149+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:18:08.706156+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" ]\n"} +{"Time":"2020-04-21T17:18:08.706162+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.706168+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:18:08.706195+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:18:08.706207+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.706212+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.706221+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:18:08.706226+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:18:08.70623+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \t \t\t\t\tinsolar_api_wrapper.go:239\n"} +{"Time":"2020-04-21T17:18:08.706234+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \t \t\t\t\te2e_deposit_transfer_test.go:140\n"} +{"Time":"2020-04-21T17:18:08.706241+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:18:08.706245+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \tTest: \tTestTransferToAccountWithHardcodedHash\n"} +{"Time":"2020-04-21T17:18:08.706249+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:18:08.806223+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithHardcodedHash","Elapsed":0.2} +{"Time":"2020-04-21T17:18:08.806271+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":"--- FAIL: TestTransferToAccountWithRandomHash (0.30s)\n"} +{"Time":"2020-04-21T17:18:08.806289+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" e2e_deposit_transfer_test.go:121: C4827\tОшибка перевода с депозита на аккаунт, если передан рандомный ethHash\n"} +{"Time":"2020-04-21T17:18:08.806301+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:18:08.806309+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" insolar_api_wrapper.go:126: Received seed: UanqslWfZbN9MXSgNxTw+a1VGet/6SsO5KiSVxNrX7M=\n"} +{"Time":"2020-04-21T17:18:08.806318+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:18:08.806326+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:18:08.806334+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:18:08.806354+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:18:08.806363+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:18:08.806371+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:18:08.806383+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:18:08.806391+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" {\n"} +{"Time":"2020-04-21T17:18:08.806399+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:08.806407+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"id\": 14,\n"} +{"Time":"2020-04-21T17:18:08.806415+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:18:08.806427+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.806434+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:18:08.80645+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:18:08.806458+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:18:08.806475+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" {\n"} +{"Time":"2020-04-21T17:18:08.806483+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:08.806491+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"id\": 14,\n"} +{"Time":"2020-04-21T17:18:08.806506+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:18:08.806515+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"seed\": \"UanqslWfZbN9MXSgNxTw+a1VGet/6SsO5KiSVxNrX7M=\"\n"} +{"Time":"2020-04-21T17:18:08.806523+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.806531+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:18:08.806538+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:18:08.806546+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:18:08.806554+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:18:08.806562+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.80657+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:18:08.806581+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:18:08.806589+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.806596+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.806603+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:18:08.806611+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:18:08.806619+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:18:08.806627+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:18:08.806635+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:18:08.806642+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:18:08.806656+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:18:08.806664+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:41: -H Digest: [SHA-256=ReDt+gRqkKzlRXk9LSHDtSznC7/TQuWFsMGI30MuvDM=]\n"} +{"Time":"2020-04-21T17:18:08.806672+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEUCIETB9McOhcLz/jenmRSzr0yZOpQZe+hHaQE947EeobDtAiEAjeIHF0sE6q5IgRMaeJK2nXiOqulQ49YefCEY/w8V+2w=]\n"} +{"Time":"2020-04-21T17:18:08.806681+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:18:08.806689+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" {\n"} +{"Time":"2020-04-21T17:18:08.806696+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:08.806703+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"id\": 26,\n"} +{"Time":"2020-04-21T17:18:08.806711+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:18:08.806719+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:18:08.806727+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"seed\": \"UanqslWfZbN9MXSgNxTw+a1VGet/6SsO5KiSVxNrX7M=\",\n"} +{"Time":"2020-04-21T17:18:08.806735+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"callSite\": \"member.migrationCreate\",\n"} +{"Time":"2020-04-21T17:18:08.806746+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEn5GkORHGHyFhz1HhelWzakFs0VFq\\nyC4bWBDhWbjagKdvPJ19CZFLgFoSiZMzcVof304yJ1VhjYO4E5Lt5D4KCA==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:18:08.806756+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.806763+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.80677+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:18:08.806777+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:18:08.806785+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:18:08.806799+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" {\n"} +{"Time":"2020-04-21T17:18:08.806807+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:08.806837+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"id\": 26,\n"} +{"Time":"2020-04-21T17:18:08.806841+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:18:08.806846+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:18:08.806851+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:18:08.806856+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.806861+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:18:08.80688+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:18:08.806885+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.806892+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:18:08.806897+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:18:08.806902+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:18:08.806907+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"traceID\": \"2440b13d9b303f1ab23407452846b4bf\",\n"} +{"Time":"2020-04-21T17:18:08.806912+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:18:08.806917+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:18:08.806922+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" ]\n"} +{"Time":"2020-04-21T17:18:08.806929+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.806947+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:18:08.806956+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:18:08.806962+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.80697+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.806975+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:18:08.80698+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:18:08.806985+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \t \t\t\t\tinsolar_api_wrapper.go:239\n"} +{"Time":"2020-04-21T17:18:08.806992+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \t \t\t\t\te2e_deposit_transfer_test.go:122\n"} +{"Time":"2020-04-21T17:18:08.806997+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:18:08.807003+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \tTest: \tTestTransferToAccountWithRandomHash\n"} +{"Time":"2020-04-21T17:18:08.807011+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:18:08.807031+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithRandomHash","Elapsed":0.3} +{"Time":"2020-04-21T17:18:08.807045+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":"--- FAIL: TestTransferToAccountWithOtherEthHash (0.23s)\n"} +{"Time":"2020-04-21T17:18:08.807053+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" e2e_deposit_transfer_test.go:76: C4825\tОшибка перевода с депозита на аккаунт, если в запросе передан чужой ethHash\n"} +{"Time":"2020-04-21T17:18:08.807059+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" insolar_api_wrapper.go:114: Getting seed...\n"} +{"Time":"2020-04-21T17:18:08.807065+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" insolar_api_wrapper.go:126: Received seed: kQkbRpsOjC2Nv4/ndPPS096HSbMrJ9G2ejtBfCUkZ1E=\n"} +{"Time":"2020-04-21T17:18:08.807072+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:18:08.80708+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:18:08.807097+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:18:08.807106+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:18:08.807121+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:18:08.807131+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:18:08.807139+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:18:08.807151+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" {\n"} +{"Time":"2020-04-21T17:18:08.807164+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:08.807172+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"id\": 21,\n"} +{"Time":"2020-04-21T17:18:08.80718+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"method\": \"node.getSeed\"\n"} +{"Time":"2020-04-21T17:18:08.807189+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.807197+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:18:08.807205+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:18:08.80721+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:18:08.807215+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" {\n"} +{"Time":"2020-04-21T17:18:08.807219+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:08.807225+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"id\": 21,\n"} +{"Time":"2020-04-21T17:18:08.80723+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:18:08.807235+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"seed\": \"kQkbRpsOjC2Nv4/ndPPS096HSbMrJ9G2ejtBfCUkZ1E=\"\n"} +{"Time":"2020-04-21T17:18:08.807242+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.80725+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:18:08.807264+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:18:08.807269+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"traceID\": \"\",\n"} +{"Time":"2020-04-21T17:18:08.807279+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"trace\": null\n"} +{"Time":"2020-04-21T17:18:08.807284+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.807289+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"code\": 0,\n"} +{"Time":"2020-04-21T17:18:08.807302+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"message\": \"\"\n"} +{"Time":"2020-04-21T17:18:08.807307+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.807311+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.807319+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" utils.go:161: Sign\n"} +{"Time":"2020-04-21T17:18:08.807326+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:30: Request:\n"} +{"Time":"2020-04-21T17:18:08.807331+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:35: POST https://wallet-api.dev-wallet-1.k8s-dev.insolar.io/api/rpc\n"} +{"Time":"2020-04-21T17:18:08.807337+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:36: Query params: map[]\n"} +{"Time":"2020-04-21T17:18:08.807342+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:41: -H Content-Type: [application/json]\n"} +{"Time":"2020-04-21T17:18:08.807347+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:41: -H Accept: [application/json]\n"} +{"Time":"2020-04-21T17:18:08.807356+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:41: -H Digest: [SHA-256=KQsj/1MMLiArmo0Fltf+BxDOuzFTzfBietmWlmHgPd4=]\n"} +{"Time":"2020-04-21T17:18:08.807361+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:41: -H Signature: [keyId=\"member-pub-key\", algorithm=\"ecdsa\", headers=\"digest\", signature=MEYCIQDTlXkXnzpRdIb+DNmc65WBVo7xL2w8IetPMs1mHoCl4gIhAKNoLRMXVDj5hTqLMwYfq6MMFdBlNCfjc8eoMEW9N1Uq]\n"} +{"Time":"2020-04-21T17:18:08.807367+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:41: -H User-Agent: []\n"} +{"Time":"2020-04-21T17:18:08.807372+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:50: request body:\n"} +{"Time":"2020-04-21T17:18:08.807377+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" {\n"} +{"Time":"2020-04-21T17:18:08.807381+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:08.807386+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"id\": 27,\n"} +{"Time":"2020-04-21T17:18:08.807391+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"method\": \"contract.call\",\n"} +{"Time":"2020-04-21T17:18:08.807396+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"params\": {\n"} +{"Time":"2020-04-21T17:18:08.807401+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"seed\": \"kQkbRpsOjC2Nv4/ndPPS096HSbMrJ9G2ejtBfCUkZ1E=\",\n"} +{"Time":"2020-04-21T17:18:08.807406+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"callSite\": \"member.migrationCreate\",\n"} +{"Time":"2020-04-21T17:18:08.807412+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\nMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEhW4890kbTZi736m+la0dqKGX8DOQ\\ncL3fowoDP/7bm0PY0vO01Rad/DGJlKCwDjNVvbWRWG6KG91md/o9wbjAXw==\\n-----END PUBLIC KEY-----\\n\"\n"} +{"Time":"2020-04-21T17:18:08.807418+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.807422+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.807427+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:53: Received response:\n"} +{"Time":"2020-04-21T17:18:08.807432+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:54: http status: 200 OK\n"} +{"Time":"2020-04-21T17:18:08.807439+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" apilogger.go:59: response body:\n"} +{"Time":"2020-04-21T17:18:08.807447+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" {\n"} +{"Time":"2020-04-21T17:18:08.807454+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"jsonrpc\": \"2.0\",\n"} +{"Time":"2020-04-21T17:18:08.807459+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"id\": 27,\n"} +{"Time":"2020-04-21T17:18:08.807464+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"result\": {\n"} +{"Time":"2020-04-21T17:18:08.807469+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"callResult\": {\n"} +{"Time":"2020-04-21T17:18:08.807476+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"reference\": \"\"\n"} +{"Time":"2020-04-21T17:18:08.807481+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.807488+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:18:08.807493+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"traceID\": \"\"\n"} +{"Time":"2020-04-21T17:18:08.807498+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.807502+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"error\": {\n"} +{"Time":"2020-04-21T17:18:08.807507+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"data\": {\n"} +{"Time":"2020-04-21T17:18:08.807512+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"requestReference\": \"\",\n"} +{"Time":"2020-04-21T17:18:08.807519+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"traceID\": \"59436fbc7d7e3c2fa444d7209380fe8c\",\n"} +{"Time":"2020-04-21T17:18:08.807525+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"trace\": [\n"} +{"Time":"2020-04-21T17:18:08.80753+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"incorrect seed\"\n"} +{"Time":"2020-04-21T17:18:08.807535+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" ]\n"} +{"Time":"2020-04-21T17:18:08.80754+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" },\n"} +{"Time":"2020-04-21T17:18:08.807544+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"code\": -31600,\n"} +{"Time":"2020-04-21T17:18:08.80755+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \"message\": \"The JSON received is not a valid request payload.\"\n"} +{"Time":"2020-04-21T17:18:08.807555+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.80756+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" }\n"} +{"Time":"2020-04-21T17:18:08.807564+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" utils.go:221: \n"} +{"Time":"2020-04-21T17:18:08.807569+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \tError Trace:\tutils.go:221\n"} +{"Time":"2020-04-21T17:18:08.807574+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \t \t\t\t\tinsolar_api_wrapper.go:239\n"} +{"Time":"2020-04-21T17:18:08.807582+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \t \t\t\t\te2e_deposit_transfer_test.go:77\n"} +{"Time":"2020-04-21T17:18:08.807587+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \tError: \tShould be empty, but was The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:18:08.807592+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \tTest: \tTestTransferToAccountWithOtherEthHash\n"} +{"Time":"2020-04-21T17:18:08.807598+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Output":" \tMessages: \terror in response: The JSON received is not a valid request payload.\n"} +{"Time":"2020-04-21T17:18:08.807603+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Test":"TestTransferToAccountWithOtherEthHash","Elapsed":0.23} +{"Time":"2020-04-21T17:18:08.807609+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Output":"FAIL\n"} +{"Time":"2020-04-21T17:18:08.809538+03:00","Action":"output","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Output":"FAIL\tgithub.com/insolar/go-autotests/apitests/tests/e2e\t1.067s\n"} +{"Time":"2020-04-21T17:18:08.809611+03:00","Action":"fail","Package":"github.com/insolar/go-autotests/apitests/tests/e2e","Elapsed":1.067} diff --git a/integration/testdata/single_module.log b/integration/testdata/single_module.log new file mode 100644 index 0000000..62baf87 --- /dev/null +++ b/integration/testdata/single_module.log @@ -0,0 +1,9 @@ +{"Time":"2020-04-22T16:52:36.088248+03:00","Action":"run","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy"} +{"Time":"2020-04-22T16:52:36.088998+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":"=== RUN TestRootModuleDummy\n"} +{"Time":"2020-04-22T16:52:36.089031+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":"--- FAIL: TestRootModuleDummy (0.00s)\n"} +{"Time":"2020-04-22T16:52:36.089049+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":" root_module_test.go:22: root module log\n"} +{"Time":"2020-04-22T16:52:36.089066+03:00","Action":"fail","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Elapsed":0} +{"Time":"2020-04-22T16:52:36.089087+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Output":"FAIL\n"} +{"Time":"2020-04-22T16:52:36.0891+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Output":"exit val: 1\n"} +{"Time":"2020-04-22T16:52:36.089145+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Output":"FAIL\tgithub.com/skudasov/go-test-rp/testmodule2\t0.006s\n"} +{"Time":"2020-04-22T16:52:36.089163+03:00","Action":"fail","Package":"github.com/skudasov/go-test-rp/testmodule2","Elapsed":0.006} diff --git a/integration/testdata/single_module_panic.log b/integration/testdata/single_module_panic.log new file mode 100644 index 0000000..a295b97 --- /dev/null +++ b/integration/testdata/single_module_panic.log @@ -0,0 +1,19 @@ +{"Time":"2020-04-22T16:52:26.658527+03:00","Action":"run","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy"} +{"Time":"2020-04-22T16:52:26.659101+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":"=== RUN TestRootModuleDummy\n"} +{"Time":"2020-04-22T16:52:26.659139+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":"--- FAIL: TestRootModuleDummy (0.00s)\n"} +{"Time":"2020-04-22T16:52:26.660824+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":"panic: some panic [recovered]\n"} +{"Time":"2020-04-22T16:52:26.660948+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":"\tpanic: some panic\n"} +{"Time":"2020-04-22T16:52:26.660972+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":"\n"} +{"Time":"2020-04-22T16:52:26.660989+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":"goroutine 17 [running]:\n"} +{"Time":"2020-04-22T16:52:26.661004+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":"testing.tRunner.func1(0xc0000cc100)\n"} +{"Time":"2020-04-22T16:52:26.661026+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":"\t/usr/local/go/src/testing/testing.go:830 +0x392\n"} +{"Time":"2020-04-22T16:52:26.661048+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":"panic(0x1108320, 0x115be00)\n"} +{"Time":"2020-04-22T16:52:26.661058+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":"\t/usr/local/go/src/runtime/panic.go:522 +0x1b5\n"} +{"Time":"2020-04-22T16:52:26.661067+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":"github.com/skudasov/go-test-rp/testmodule2.TestRootModuleDummy(0xc0000cc100)\n"} +{"Time":"2020-04-22T16:52:26.661081+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":"\t/Users/sergejkudasov/go-test-rp/testmodule2/root_module_test.go:21 +0x39\n"} +{"Time":"2020-04-22T16:52:26.661092+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":"testing.tRunner(0xc0000cc100, 0x1141b70)\n"} +{"Time":"2020-04-22T16:52:26.661101+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":"\t/usr/local/go/src/testing/testing.go:865 +0xc0\n"} +{"Time":"2020-04-22T16:52:26.66111+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":"created by testing.(*T).Run\n"} +{"Time":"2020-04-22T16:52:26.661144+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":"\t/usr/local/go/src/testing/testing.go:916 +0x35a\n"} +{"Time":"2020-04-22T16:52:26.661326+03:00","Action":"output","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Output":"FAIL\tgithub.com/skudasov/go-test-rp/testmodule2\t0.007s\n"} +{"Time":"2020-04-22T16:52:26.661367+03:00","Action":"fail","Package":"github.com/skudasov/go-test-rp/testmodule2","Test":"TestRootModuleDummy","Elapsed":0.008} diff --git a/testmodule/root_module_test.go b/testmodule/root_module_test.go new file mode 100644 index 0000000..698926b --- /dev/null +++ b/testmodule/root_module_test.go @@ -0,0 +1,24 @@ +package testmodule + +import ( + "fmt" + "os" + "testing" +) + +func TestMain(m *testing.M) { + defer func() { + if r := recover(); r != nil { + fmt.Println("Recovered in main", r) + } + }() + exitVal := m.Run() + fmt.Printf("exit val: %d\n", exitVal) + os.Exit(exitVal) +} + +func TestRootModuleDummy(t *testing.T) { + panic("some panic") + t.Log("root module log") + t.Fail() +}