Skip to content

Commit

Permalink
Change deposit ix writable accounts (#99)
Browse files Browse the repository at this point in the history
* Change deposit ix writable accounts

* Version bump
  • Loading branch information
hoakbuilds authored May 1, 2022
1 parent d6af986 commit 1c78807
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SharedBuildProperties.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Product>Solnet.Mango</Product>
<Version>5.0.4.3</Version>
<Version>5.0.4.4</Version>
<Copyright>Copyright 2022 &#169; blockmountain</Copyright>
<Authors>blockmountain</Authors>
<PublisherName>blockmountain</PublisherName>
Expand Down
4 changes: 2 additions & 2 deletions Solnet.Mango/MangoProgram.cs
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,8 @@ public static TransactionInstruction Deposit(PublicKey programIdKey, PublicKey m
AccountMeta.ReadOnly(mangoGroup, false),
AccountMeta.Writable(mangoAccount, false),
AccountMeta.ReadOnly(owner, true),
AccountMeta.ReadOnly(mangoCache, false),
AccountMeta.ReadOnly(rootBank, false),
AccountMeta.Writable(mangoCache, false),
AccountMeta.Writable(rootBank, false),
AccountMeta.Writable(nodeBank, false),
AccountMeta.Writable(nodeBankVault, false),
AccountMeta.ReadOnly(TokenProgram.ProgramIdKey, false),
Expand Down

0 comments on commit 1c78807

Please sign in to comment.