You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cargo test --package bitcoin_scripts --lib --features all -- parser::test --nocapture
The compiler fails and returns error:
error[E0599]: no method named `compile` found for enum `Concrete` in the current scope
--> scripts/src/parser.rs:165:134
|
165 | ($($arg:tt)*) => (LockScript::from(miniscript::policy::Concrete::<bitcoin::PublicKey>::from_str(&format!($($arg)*)).unwrap().compile::<...
| ^^^^^^^ method not found in `Concrete<bitcoin::PublicKey>`
For some reason, the macro doesn't recognize the compile method.
The text was updated successfully, but these errors were encountered:
I tried test the parse tests:
cargo test --package bitcoin_scripts --lib --features all -- parser::test --nocapture
The compiler fails and returns error:
For some reason, the macro doesn't recognize the compile method.
The text was updated successfully, but these errors were encountered: