forked from TrueCloudLab/frostfs-node
[#2091] morph/client: Use notary.FakeContractAccount
wrapper
Signed-off-by: Evgenii Stratonikov <evgeniy@morphbits.ru>
This commit is contained in:
parent
b93be8869b
commit
c1ea6fd854
1 changed files with 1 additions and 5 deletions
|
@ -581,11 +581,7 @@ func (c *Client) notaryAccounts(invokedByAlpha bool, multiaddr *wallet.Account)
|
||||||
a := make([]*wallet.Account, 0, 4)
|
a := make([]*wallet.Account, 0, 4)
|
||||||
|
|
||||||
// first we have proxy account, as it will pay for the execution
|
// first we have proxy account, as it will pay for the execution
|
||||||
a = append(a, &wallet.Account{
|
a = append(a, notary.FakeContractAccount(c.notary.proxy))
|
||||||
Contract: &wallet.Contract{
|
|
||||||
Deployed: true,
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
// then we have inner ring multiaddress account
|
// then we have inner ring multiaddress account
|
||||||
a = append(a, multiaddr)
|
a = append(a, multiaddr)
|
||||||
|
|
Loading…
Reference in a new issue