Skip to content
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.

Commit

Permalink
before and after
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanleecode authored and harrysolovay committed Feb 28, 2023
1 parent 3e8fa18 commit d9fe4ce
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions examples/virtual_multisig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,17 @@ await Rune
.chain(() => fundStash)
.chain(() => fundBobProxy)
.chain(() => fundCharlieProxy)
.chain(() =>
Rune.tuple([
System.Account.entry(Rune.tuple([vMultisig.stash])).dbg("Stash Balance Before"),
System.Account.entry([dave.publicKey]).dbg("Dave Balance Before"),
])
)
.chain(() => bobRatify)
.chain(() => charlieRatify)
.chain(() =>
Rune.tuple([
System.Account.entry(Rune.tuple([vMultisig.stash])).dbg("Stash Balance"),
System.Account.entry([dave.publicKey]).dbg("Dave Balance"),
System.Account.entry(Rune.tuple([vMultisig.stash])).dbg("Stash Balance After"),
System.Account.entry([dave.publicKey]).dbg("Dave Balance After"),
])
).run()

0 comments on commit d9fe4ce

Please sign in to comment.