Skip to content

Commit

Permalink
Merge pull request #1581 from mysteriumnetwork/hotfix-correct-stake
Browse files Browse the repository at this point in the history
Correctly apply stake for provider registration
  • Loading branch information
vkuznecovas authored Jan 28, 2020
2 parents 42fddfb + 4ea6f3f commit 8fece4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/flags_transactor.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ var (
FlagTransactorProviderRegistrationStake = cli.Uint64Flag{
Name: "transactor.provider.registration-stake",
Usage: "the stake we'll use when registering provider",
Value: 125000000000,
Value: 6200000000,
}
)

Expand Down
1 change: 1 addition & 0 deletions docker-compose.e2e-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ services:
--log-level=debug
--quality.address=http://morqa:8085/api/v1
--quality-oracle.address=http://morqa:8085/api/v1
--transactor.provider.registration-stake=6200000000
service
--agreed-terms-and-conditions
--identity=0xd1a23227bd5ad77f36ba62badcb78a410a1db6c5
Expand Down
2 changes: 1 addition & 1 deletion mobile/mysterium/entrypoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ func NewNode(appPath string, optionsNetwork *MobileNetworkOptions) (*MobileNode,
ChannelImplementation: metadata.TestnetDefinition.ChannelImplAddress,
ProviderMaxRegistrationAttempts: 10,
ProviderRegistrationRetryDelay: time.Minute * 3,
ProviderRegistrationStake: 125000000000,
ProviderRegistrationStake: 6200000000,
},
Accountant: node.OptionsAccountant{
AccountantEndpointAddress: metadata.TestnetDefinition.AccountantAddress,
Expand Down

0 comments on commit 8fece4c

Please sign in to comment.