Version 1.18.0
What's Changed
- Contract deployment args fix by @jribbink in #42
- Add CODECOV_TOKEN by @jribbink in #43
- Allow for private key to be created in a target directory by @chasefleming in #48
Breaking Changes
There is a minor breaking change to flowkit.Init
. The Init
function no longer creates an emulator account for you. You should now create an account (it is recommended to use NewEmulatorAccount
) and then add it to the state's accounts with state.Accounts().AddOrUpdate(...)
.
Usage Example
emulatorServiceAccount, _ := accounts.NewEmulatorAccount(readerWriter, crypto.ECDSA_P256, crypto.SHA3_256, "")
state.Accounts().AddOrUpdate(emulatorServiceAccount)
Full Changelog: v1.17.3...v1.18.0