Skip to content

Commit

Permalink
fix(cosmrs): BodyBuilder non-critical extension add (#516)
Browse files Browse the repository at this point in the history
  • Loading branch information
v0-e authored Feb 1, 2025
1 parent 4604ae9 commit 9e08e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cosmrs/src/tx/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ impl BodyBuilder {

/// Add a non-critical extension option.
pub fn non_critical_extension_option(&mut self, option: impl Into<Any>) -> &mut Self {
self.body.extension_options.push(option.into());
self.body.non_critical_extension_options.push(option.into());
self
}

Expand Down

0 comments on commit 9e08e91

Please sign in to comment.