Skip to content

Commit

Permalink
value
Browse files Browse the repository at this point in the history
  • Loading branch information
quasisamurai committed Aug 24, 2023
1 parent c29a31c commit 157f63d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/neutron-sdk/src/bindings/msg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ use crate::{
use cosmwasm_std::{Binary, Coin, CosmosMsg, CustomMsg, StdError, Uint128};
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use serde_json::Value;
use serde_json_wasm::to_string;

#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)]
Expand Down Expand Up @@ -506,13 +507,12 @@ pub struct UpdateAdminProposal {
pub contract: String,
}


#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)]
#[serde(rename_all = "snake_case")]
/// ProposalExecuteMessage defines the struct for sdk47 compatible update params admin proposal.
pub struct ProposalExecuteMessage {
/// **message** is a json representing a sdk message passed to admin module to execute.
pub message: String,
pub message: Value,
}

#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)]
Expand Down

0 comments on commit 157f63d

Please sign in to comment.