-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b4985b7
commit e598ece
Showing
4 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import MultiSigFlowToken from 0x{{.MultiSigFlowToken}} | ||
import OnChainMultiSig from 0x{{.OnChainMultiSig}} | ||
|
||
transaction (multiSigVaultAddr: Address, txIndex: UInt64) { | ||
prepare(owner: AuthAccount) { | ||
let s = owner.borrow<&MultiSigFlowToken.Vault>(from: MultiSigFlowToken.VaultStoragePath) ?? panic ("cannot borrow own resource") | ||
let store = s.signatureStore! | ||
store.txIndex = txIndex | ||
s.signatureStore = store | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import MultiSigFlowToken from 0x{{.MultiSigFlowToken}} | ||
import OnChainMultiSig from 0x{{.OnChainMultiSig}} | ||
|
||
transaction (multiSigVaultAddr: Address, txIndex: UInt64) { | ||
prepare(owner: AuthAccount) { | ||
let s = owner.borrow<&MultiSigFlowToken.Vault>(from: MultiSigFlowToken.VaultStoragePath) ?? panic ("cannot borrow own resource") | ||
s.signatureStore!.txIndex = txIndex | ||
} | ||
} |