Select Git revision
e2eManager_test.go
url.go 738 B
///////////////////////////////////////////////////////////////////////////////
// Copyright © 2020 xx network SEZC //
// //
// Use of this source code is governed by a license that can be found in the //
// LICENSE file //
///////////////////////////////////////////////////////////////////////////////
package bindings
import (
"gitlab.com/xx_network/primitives/id"
"fmt"
)
const dashboardBaseURL = "https://dashboard.xx.network"
func getRoundURL(round id.Round) string {
return fmt.Sprintf("%s/rounds/%d?xxmessenger=true", dashboardBaseURL, round)
}