Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix multisig address generation in multisig.py example (#8668)
AccountAddress class is missing `from_multisig_schema` function, use `from_multi_ed25519` instead. ``` multisig_address = AccountAddress.from_multisig_schema( [alice.public_key(), bob.public_key(), chad.public_key()], threshold ) ```
- Loading branch information