Skip to content

Commit

Permalink
fix starcoin-transaction-builder errors (#4231)
Browse files Browse the repository at this point in the history
  • Loading branch information
nkysg authored Oct 10, 2024
1 parent 74a2f1f commit 686b73f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vm/transaction-builder/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -988,14 +988,14 @@ pub fn build_module_upgrade_queue(
address: genesis_address(),
module: Identifier::new("UpgradeModuleDaoProposal").unwrap(),
name: Identifier::new("UpgradeModuleV2").unwrap(),
type_params: vec![],
type_args: vec![],
}))
} else {
TypeTag::Struct(Box::new(StructTag {
address: genesis_address(),
module: Identifier::new("UpgradeModuleDaoProposal").unwrap(),
name: Identifier::new("UpgradeModule").unwrap(),
type_params: vec![],
type_args: vec![],
}))
};

Expand Down

0 comments on commit 686b73f

Please sign in to comment.