wip #3
Annotations
9 errors
|
`main` function not found in crate `example_cli_redb`:
examples/example_cli_redb/src/main.rs#L985
error[E0601]: `main` function not found in crate `example_cli_redb`
--> examples/example_cli_redb/src/main.rs:985:2
|
985 | }
| ^ consider adding a `main` function to `examples/example_cli_redb/src/main.rs`
|
|
failed to resolve: use of undeclared type `Store`:
examples/example_cli_redb/src/main.rs#L916
error[E0433]: failed to resolve: use of undeclared type `Store`
--> examples/example_cli_redb/src/main.rs:916:22
|
916 | let mut db = Store::<ChangeSet>::create(db_magic, db_path)?;
| ^^^^^ use of undeclared type `Store`
|
help: consider importing this struct
|
1 + use bdk_redb::Store;
|
|
|
failed to resolve: use of undeclared type `Store`:
examples/example_cli_redb/src/main.rs#L839
error[E0433]: failed to resolve: use of undeclared type `Store`
--> examples/example_cli_redb/src/main.rs:839:17
|
839 | Store::<ChangeSet>::load(db_magic, db_path).context("could not open file store")?;
| ^^^^^ use of undeclared type `Store`
|
help: consider importing this struct
|
1 + use bdk_redb::Store;
|
|
|
cannot find type `Store` in this scope:
examples/example_cli_redb/src/main.rs#L819
error[E0412]: cannot find type `Store` in this scope
--> examples/example_cli_redb/src/main.rs:819:19
|
819 | pub db: Mutex<Store<ChangeSet>>,
| ^^^^^ not found in this scope
|
help: consider importing this struct
|
1 + use bdk_redb::Store;
|
|
|
cannot find value `index_changeset` in this scope:
examples/example_cli_redb/src/main.rs#L665
error[E0425]: cannot find value `index_changeset` in this scope
--> examples/example_cli_redb/src/main.rs:665:34
|
665 | indexer: index_changeset,
| ^^^^^^^^^^^^^^^ not found in this scope
|
|
failed to resolve: use of undeclared type `Store`:
examples/example_cli_redb/src/main.rs#L916
error[E0433]: failed to resolve: use of undeclared type `Store`
--> examples/example_cli_redb/src/main.rs:916:22
|
916 | let mut db = Store::<ChangeSet>::create(db_magic, db_path)?;
| ^^^^^ use of undeclared type `Store`
|
help: consider importing this struct
|
1 + use bdk_redb::Store;
|
|
|
failed to resolve: use of undeclared type `Store`:
examples/example_cli_redb/src/main.rs#L839
error[E0433]: failed to resolve: use of undeclared type `Store`
--> examples/example_cli_redb/src/main.rs:839:17
|
839 | Store::<ChangeSet>::load(db_magic, db_path).context("could not open file store")?;
| ^^^^^ use of undeclared type `Store`
|
help: consider importing this struct
|
1 + use bdk_redb::Store;
|
|
|
cannot find type `Store` in this scope:
examples/example_cli_redb/src/main.rs#L819
error[E0412]: cannot find type `Store` in this scope
--> examples/example_cli_redb/src/main.rs:819:19
|
819 | pub db: Mutex<Store<ChangeSet>>,
| ^^^^^ not found in this scope
|
help: consider importing this struct
|
1 + use bdk_redb::Store;
|
|
|
cannot find value `index_changeset` in this scope:
examples/example_cli_redb/src/main.rs#L665
error[E0425]: cannot find value `index_changeset` in this scope
--> examples/example_cli_redb/src/main.rs:665:34
|
665 | indexer: index_changeset,
| ^^^^^^^^^^^^^^^ not found in this scope
|