Fix naming conventions #1356
Annotations
10 errors
src/web.rs#L380
error[E0425]: cannot find function `full_issue_contract` in this scope
--> tests/rgb/web/contracts.rs:108:39
|
108 | let issue_resp: JsValue = resolve(full_issue_contract(sk.to_string(), issue_req)).await;
| ^^^^^^^^^^^^^^^^^^^
|
::: /home/runner/work/bitmask-core/bitmask-core/src/web.rs:380:5
|
380 | pub fn issue_contract(nostr_hex_sk: String, request: JsValue) -> Promise {
| ------------------------------------------------------------------------ similarly named function `issue_contract` defined here
|
help: a function with a similar name exists
|
108 | let issue_resp: JsValue = resolve(issue_contract(sk.to_string(), issue_req)).await;
| ~~~~~~~~~~~~~~
help: consider importing this function
|
5 + use bitmask_core::web::rgb::full_issue_contract;
|
|
tests/rgb/web/contracts.rs#L108
error[E0425]: cannot find function `full_issue_contract` in this scope
--> tests/rgb/web/contracts.rs:108:39
|
108 | let issue_resp: JsValue = resolve(full_issue_contract(sk.to_string(), issue_req)).await;
| ^^^^^^^^^^^^^^^^^^^
|
::: /home/runner/work/bitmask-core/bitmask-core/src/web.rs:380:5
|
380 | pub fn issue_contract(nostr_hex_sk: String, request: JsValue) -> Promise {
| ------------------------------------------------------------------------ similarly named function `issue_contract` defined here
|
help: a function with a similar name exists
|
108 | let issue_resp: JsValue = resolve(issue_contract(sk.to_string(), issue_req)).await;
| ~~~~~~~~~~~~~~
help: consider importing this function
|
5 + use bitmask_core::web::rgb::full_issue_contract;
|
|
src/web.rs#L380
error[E0425]: cannot find function `full_issue_contract` in this scope
--> tests/rgb/web/proxy.rs:173:39
|
173 | let issue_resp: JsValue = resolve(full_issue_contract(issuer_sk.to_string(), issue_req)).await;
| ^^^^^^^^^^^^^^^^^^^
|
::: /home/runner/work/bitmask-core/bitmask-core/src/web.rs:380:5
|
380 | pub fn issue_contract(nostr_hex_sk: String, request: JsValue) -> Promise {
| ------------------------------------------------------------------------ similarly named function `issue_contract` defined here
|
help: a function with a similar name exists
|
173 | let issue_resp: JsValue = resolve(issue_contract(issuer_sk.to_string(), issue_req)).await;
| ~~~~~~~~~~~~~~
help: consider importing this function
|
5 + use bitmask_core::web::rgb::full_issue_contract;
|
|
tests/rgb/web/proxy.rs#L173
error[E0425]: cannot find function `full_issue_contract` in this scope
--> tests/rgb/web/proxy.rs:173:39
|
173 | let issue_resp: JsValue = resolve(full_issue_contract(issuer_sk.to_string(), issue_req)).await;
| ^^^^^^^^^^^^^^^^^^^
|
::: /home/runner/work/bitmask-core/bitmask-core/src/web.rs:380:5
|
380 | pub fn issue_contract(nostr_hex_sk: String, request: JsValue) -> Promise {
| ------------------------------------------------------------------------ similarly named function `issue_contract` defined here
|
help: a function with a similar name exists
|
173 | let issue_resp: JsValue = resolve(issue_contract(issuer_sk.to_string(), issue_req)).await;
| ~~~~~~~~~~~~~~
help: consider importing this function
|
5 + use bitmask_core::web::rgb::full_issue_contract;
|
|
src/web.rs#L380
error[E0425]: cannot find function `full_issue_contract` in this scope
--> tests/rgb/web/proxy.rs:383:39
|
383 | let issue_resp: JsValue = resolve(full_issue_contract(issuer_sk.to_string(), issue_req)).await;
| ^^^^^^^^^^^^^^^^^^^
|
::: /home/runner/work/bitmask-core/bitmask-core/src/web.rs:380:5
|
380 | pub fn issue_contract(nostr_hex_sk: String, request: JsValue) -> Promise {
| ------------------------------------------------------------------------ similarly named function `issue_contract` defined here
|
help: a function with a similar name exists
|
383 | let issue_resp: JsValue = resolve(issue_contract(issuer_sk.to_string(), issue_req)).await;
| ~~~~~~~~~~~~~~
help: consider importing this function
|
5 + use bitmask_core::web::rgb::full_issue_contract;
|
|
tests/rgb/web/proxy.rs#L383
error[E0425]: cannot find function `full_issue_contract` in this scope
--> tests/rgb/web/proxy.rs:383:39
|
383 | let issue_resp: JsValue = resolve(full_issue_contract(issuer_sk.to_string(), issue_req)).await;
| ^^^^^^^^^^^^^^^^^^^
|
::: /home/runner/work/bitmask-core/bitmask-core/src/web.rs:380:5
|
380 | pub fn issue_contract(nostr_hex_sk: String, request: JsValue) -> Promise {
| ------------------------------------------------------------------------ similarly named function `issue_contract` defined here
|
help: a function with a similar name exists
|
383 | let issue_resp: JsValue = resolve(issue_contract(issuer_sk.to_string(), issue_req)).await;
| ~~~~~~~~~~~~~~
help: consider importing this function
|
5 + use bitmask_core::web::rgb::full_issue_contract;
|
|
src/web.rs#L380
error[E0425]: cannot find function `full_issue_contract` in this scope
--> tests/rgb/web/swaps.rs:195:39
|
195 | let issue_resp: JsValue = resolve(full_issue_contract(issuer_sk.to_string(), issue_req)).await;
| ^^^^^^^^^^^^^^^^^^^
|
::: /home/runner/work/bitmask-core/bitmask-core/src/web.rs:380:5
|
380 | pub fn issue_contract(nostr_hex_sk: String, request: JsValue) -> Promise {
| ------------------------------------------------------------------------ similarly named function `issue_contract` defined here
|
help: a function with a similar name exists
|
195 | let issue_resp: JsValue = resolve(issue_contract(issuer_sk.to_string(), issue_req)).await;
| ~~~~~~~~~~~~~~
help: consider importing this function
|
5 + use bitmask_core::web::rgb::full_issue_contract;
|
|
tests/rgb/web/swaps.rs#L195
error[E0425]: cannot find function `full_issue_contract` in this scope
--> tests/rgb/web/swaps.rs:195:39
|
195 | let issue_resp: JsValue = resolve(full_issue_contract(issuer_sk.to_string(), issue_req)).await;
| ^^^^^^^^^^^^^^^^^^^
|
::: /home/runner/work/bitmask-core/bitmask-core/src/web.rs:380:5
|
380 | pub fn issue_contract(nostr_hex_sk: String, request: JsValue) -> Promise {
| ------------------------------------------------------------------------ similarly named function `issue_contract` defined here
|
help: a function with a similar name exists
|
195 | let issue_resp: JsValue = resolve(issue_contract(issuer_sk.to_string(), issue_req)).await;
| ~~~~~~~~~~~~~~
help: consider importing this function
|
5 + use bitmask_core::web::rgb::full_issue_contract;
|
|
src/web.rs#L380
error[E0425]: cannot find function `full_issue_contract` in this scope
--> tests/rgb/web/transfers.rs:170:39
|
170 | let issue_resp: JsValue = resolve(full_issue_contract(issuer_sk.to_string(), issue_req)).await;
| ^^^^^^^^^^^^^^^^^^^
|
::: /home/runner/work/bitmask-core/bitmask-core/src/web.rs:380:5
|
380 | pub fn issue_contract(nostr_hex_sk: String, request: JsValue) -> Promise {
| ------------------------------------------------------------------------ similarly named function `issue_contract` defined here
|
help: a function with a similar name exists
|
170 | let issue_resp: JsValue = resolve(issue_contract(issuer_sk.to_string(), issue_req)).await;
| ~~~~~~~~~~~~~~
help: consider importing this function
|
5 + use bitmask_core::web::rgb::full_issue_contract;
|
|
tests/rgb/web/transfers.rs#L170
error[E0425]: cannot find function `full_issue_contract` in this scope
--> tests/rgb/web/transfers.rs:170:39
|
170 | let issue_resp: JsValue = resolve(full_issue_contract(issuer_sk.to_string(), issue_req)).await;
| ^^^^^^^^^^^^^^^^^^^
|
::: /home/runner/work/bitmask-core/bitmask-core/src/web.rs:380:5
|
380 | pub fn issue_contract(nostr_hex_sk: String, request: JsValue) -> Promise {
| ------------------------------------------------------------------------ similarly named function `issue_contract` defined here
|
help: a function with a similar name exists
|
170 | let issue_resp: JsValue = resolve(issue_contract(issuer_sk.to_string(), issue_req)).await;
| ~~~~~~~~~~~~~~
help: consider importing this function
|
5 + use bitmask_core::web::rgb::full_issue_contract;
|
|
The logs for this run have expired and are no longer available.
Loading