Browse Source

Add 20T gas for add_participant API call

develop
Silvestr Predko 2 years ago
parent
commit
d7a42d7f08
2 changed files with 2 additions and 1 deletions
  1. 1
    1
      web-client/Cargo.toml
  2. 1
    0
      web-client/src/contract.rs

+ 1
- 1
web-client/Cargo.toml View File

1
 [package]
1
 [package]
2
 name = "web-client"
2
 name = "web-client"
3
-version = "0.1.1"
3
+version = "0.1.2"
4
 edition = "2021"
4
 edition = "2021"
5
 authors = ["silvestr@relayz.io"]
5
 authors = ["silvestr@relayz.io"]
6
 description = """
6
 description = """

+ 1
- 0
web-client/src/contract.rs View File

49
             "meet_id": meet_id,
49
             "meet_id": meet_id,
50
             "participant": participant
50
             "participant": participant
51
         }))
51
         }))
52
+        .gas(parse_gas!("20 T") as u64)
52
         .commit(Finality::None)
53
         .commit(Finality::None)
53
         .await?
54
         .await?
54
         .id();
55
         .id();

Loading…
Cancel
Save