From d0462eb4adbe338d8a7455aad1ac6bfe668fa0fc Mon Sep 17 00:00:00 2001 From: Mark Sinclair Date: Wed, 29 May 2024 17:15:17 +0100 Subject: [PATCH] Add URL to operator T&Cs to default memos used during bonding for wallet and CLI --- .../cosmwasm-smart-contracts/mixnet-contract/src/msg.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/cosmwasm-smart-contracts/mixnet-contract/src/msg.rs b/common/cosmwasm-smart-contracts/mixnet-contract/src/msg.rs index ca154e231b..2eddfb5997 100644 --- a/common/cosmwasm-smart-contracts/mixnet-contract/src/msg.rs +++ b/common/cosmwasm-smart-contracts/mixnet-contract/src/msg.rs @@ -324,10 +324,10 @@ impl ExecuteMsg { ExecuteMsg::AdvanceCurrentEpoch { .. } => "advancing current epoch".into(), ExecuteMsg::ReconcileEpochEvents { .. } => "reconciling epoch events".into(), ExecuteMsg::BondMixnode { mix_node, .. } => { - format!("bonding mixnode {}", mix_node.identity_key) + format!("bonding mixnode {}, accepted https://nymtech.net/terms-and-conditions/operators/v1.0.0", mix_node.identity_key) } ExecuteMsg::BondMixnodeOnBehalf { mix_node, .. } => { - format!("bonding mixnode {} on behalf", mix_node.identity_key) + format!("bonding mixnode {} on behalf, accepted https://nymtech.net/terms-and-conditions/operators/v1.0.0", mix_node.identity_key) } ExecuteMsg::PledgeMore {} => "pledging additional tokens".into(), ExecuteMsg::PledgeMoreOnBehalf { .. } => "pledging additional tokens on behalf".into(), @@ -346,10 +346,10 @@ impl ExecuteMsg { "updating mixnode configuration on behalf".into() } ExecuteMsg::BondGateway { gateway, .. } => { - format!("bonding gateway {}", gateway.identity_key) + format!("bonding gateway {}, accepted https://nymtech.net/terms-and-conditions/operators/v1.0.0", gateway.identity_key) } ExecuteMsg::BondGatewayOnBehalf { gateway, .. } => { - format!("bonding gateway {} on behalf", gateway.identity_key) + format!("bonding gateway {} on behalf, accepted https://nymtech.net/terms-and-conditions/operators/v1.0.0", gateway.identity_key) } ExecuteMsg::UnbondGateway { .. } => "unbonding gateway".into(), ExecuteMsg::UnbondGatewayOnBehalf { .. } => "unbonding gateway on behalf".into(),