git.delta.rocks / unique-network / refs/commits / 4b4feb5f2c47

difftreelog

fix Small fixes.

Trubnikov Sergey2022-08-25parent: #1b03174.patch.diff
in: master

6 files changed

modifiedCargo.lockdiffbeforeafterboth
55525552
5553[[package]]5553[[package]]
5554name = "pallet-common"5554name = "pallet-common"
5555version = "0.1.6"5555version = "0.1.7"
5556dependencies = [5556dependencies = [
5557 "ethereum",5557 "ethereum",
5558 "evm-coder",5558 "evm-coder",
modifiedpallets/common/CHANGELOG.mddiffbeforeafterboth
22
3All notable changes to this project will be documented in this file.3All notable changes to this project will be documented in this file.
44
5## [0.2.0] - 2022-08-195## [0.1.7] - 2022-08-19
66
7### Added7### Added
88
modifiedpallets/common/Cargo.tomldiffbeforeafterboth
1[package]1[package]
2name = "pallet-common"2name = "pallet-common"
3version = "0.1.6"3version = "0.1.7"
4license = "GPLv3"4license = "GPLv3"
5edition = "2021"5edition = "2021"
66
modifiedtests/src/eth/collectionSponsoring.test.tsdiffbeforeafterboth

no syntactic changes

modifiedtests/src/eth/contractSponsoring.test.tsdiffbeforeafterboth
25 createEthAccount,25 createEthAccount,
26 ethBalanceViaSub,26 ethBalanceViaSub,
27} from './util/helpers';27} from './util/helpers';
28import {evmToAddress} from '@polkadot/util-crypto';
2928
30describe('Sponsoring EVM contracts', () => {29describe('Sponsoring EVM contracts', () => {
31 itWeb3('Self sponsored can be set by the address that deployed the contract', async ({api, web3, privateKeyWrapper}) => {30 itWeb3('Self sponsored can be set by the address that deployed the contract', async ({api, web3, privateKeyWrapper}) => {
modifiedtests/src/eth/sponsoring.test.tsdiffbeforeafterboth
51 });51 });
5252
53 itWeb3('...but this doesn\'t applies to payable value', async ({api, web3, privateKeyWrapper}) => {53 itWeb3('...but this doesn\'t applies to payable value', async ({api, web3, privateKeyWrapper}) => {
54 const alice = privateKeyWrapper('//Alice');
55
56 const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);54 const owner = await createEthAccountWithBalance(api, web3, privateKeyWrapper);
57 const sponsor = await createEthAccountWithBalance(api, web3, privateKeyWrapper);55 const sponsor = await createEthAccountWithBalance(api, web3, privateKeyWrapper);