Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
warittornc committed Nov 20, 2024
1 parent b8e0fe2 commit 95ee3ef
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ executors:
docker:
- image: rust:1.81.0
ubuntu:
machine:
image: ubuntu-2004:202201-02
machine: true
ci-builds:
docker:
- image: cibuilds/github:0.13
Expand Down
10 changes: 9 additions & 1 deletion contracts/price-feed/schema/instantiate_msg.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"ask_count",
"client_id",
"execute_gas",
"fee",
"fee_limit",
"min_count",
"minimum_sources",
Expand All @@ -22,6 +23,12 @@
"execute_gas": {
"$ref": "#/definitions/Uint64"
},
"fee": {
"type": "array",
"items": {
"$ref": "#/definitions/Coin"
}
},
"fee_limit": {
"type": "array",
"items": {
Expand Down Expand Up @@ -58,7 +65,8 @@
"denom": {
"type": "string"
}
}
},
"additionalProperties": false
},
"Uint128": {
"description": "A thin wrapper around u128 that is using strings for JSON encoding/decoding, such that the full u128 range can be used for clients that convert JSON numbers to floats, like JavaScript and jq.\n\n# Examples\n\nUse `from` to create instances of this and `u128` to get the value out:\n\n``` # use cosmwasm_std::Uint128; let a = Uint128::from(123u128); assert_eq!(a.u128(), 123);\n\nlet b = Uint128::from(42u64); assert_eq!(b.u128(), 42);\n\nlet c = Uint128::from(70u32); assert_eq!(c.u128(), 70); ```",
Expand Down
File renamed without changes.

0 comments on commit 95ee3ef

Please sign in to comment.