Skip to content

Commit

Permalink
Remove sender from anchor allowed features
Browse files Browse the repository at this point in the history
  • Loading branch information
thibault-martinez committed Nov 15, 2023
1 parent 010d70a commit 136a61e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/src/types/block/output/anchor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ impl AnchorOutput {
pub const ALLOWED_UNLOCK_CONDITIONS: UnlockConditionFlags =
UnlockConditionFlags::STATE_CONTROLLER_ADDRESS.union(UnlockConditionFlags::GOVERNOR_ADDRESS);
/// The set of allowed [`Feature`]s for an [`AnchorOutput`].
pub const ALLOWED_FEATURES: FeatureFlags = FeatureFlags::SENDER.union(FeatureFlags::METADATA);
pub const ALLOWED_FEATURES: FeatureFlags = FeatureFlags::METADATA;
/// The set of allowed immutable [`Feature`]s for an [`AnchorOutput`].
pub const ALLOWED_IMMUTABLE_FEATURES: FeatureFlags = FeatureFlags::ISSUER.union(FeatureFlags::METADATA);

Expand Down

0 comments on commit 136a61e

Please sign in to comment.