package mxgateway const ( // ClientVersion identifies this Go client scaffold before package releases // assign semantic versions. ClientVersion = "0.1.0-dev" // GatewayProtocolVersion matches GatewayContractInfo.GatewayProtocolVersion // in the shared .NET contracts. GatewayProtocolVersion uint32 = 3 // WorkerProtocolVersion matches GatewayContractInfo.WorkerProtocolVersion // and is exposed for fake-worker and parity tests. WorkerProtocolVersion uint32 = 1 )