You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As it was identified in omni/bridge-ui#182, it is necessary to provide separate interfaces to access (setter and getter) the fee value related transfer from Home or from Foreign sides.
Consider to have the methods setHomeFee and setForeignFee. Therefore it will be getHomeFee and getForeignFee.
If the Fee Manager is in manages-one-direction mode (see #148) the method setFee will proxy one of the methods setHomeFee and setForeignFee depending on the side where the contract is deployed. Similar is for getFee.
The text was updated successfully, but these errors were encountered:
Related to Issue 119 Rewards for bridge validators.
As it was identified in omni/bridge-ui#182, it is necessary to provide separate interfaces to access (setter and getter) the fee value related transfer from Home or from Foreign sides.
The current interface of the fee manager is:
https://github.com/poanetwork/poa-bridge-contracts/blob/b070322802880b53a2cc444cedb017d954088ad5/contracts/upgradeable_contracts/BaseFeeManager.sol#L26-L33
Consider to have the methods
setHomeFee
andsetForeignFee
. Therefore it will begetHomeFee
andgetForeignFee
.If the Fee Manager is in
manages-one-direction
mode (see #148) the methodsetFee
will proxy one of the methodssetHomeFee
andsetForeignFee
depending on the side where the contract is deployed. Similar is forgetFee
.The text was updated successfully, but these errors were encountered: