We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d92749d commit 94246c6Copy full SHA for 94246c6
target_chains/ethereum/contracts/contracts/pyth/Pyth.sol
@@ -86,7 +86,11 @@ abstract contract Pyth is
86
// In the accumulator update data a single update can contain
87
// up to 255 messages and we charge a singleUpdateFee per each
88
// message
89
- return 255 * singleUpdateFeeInWei() * updateDataSize;
+ return
90
+ 255 *
91
+ singleUpdateFeeInWei() *
92
+ updateDataSize +
93
+ transactionFeeInWei();
94
}
95
96
function getUpdateFee(
0 commit comments