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
With soroban 20.3.1 I tried to call soroban contract install with a 61 kb wasm in testnet and got error: Fee was too large 4946582915. After some investigation I found that error occurs in https://github.com/stellar/soroban-rpc/blob/main/cmd/crates/soroban-rpc/src/txn.rs#L321 because classic_tx_fee + simulation.min_resource_fee = 4946582915 or 494.6582915 XLM.
Why values that exceed U32_MAX is not allowed for fee? Does it mean that there is no way to install wasm in mainnet with soroban-cli?
What did you expect to see?
Max fee value fits I128_MAX
What did you see instead?
Error if simulation.min_resource_fee is more than U32_MAX - DEFAULT_TRANSACTION_FEES=4294967195
The text was updated successfully, but these errors were encountered:
What version are you using?
v20.3.3
What did you do?
With soroban 20.3.1 I tried to call
soroban contract install
with a 61 kb wasm in testnet and got error:Fee was too large 4946582915
. After some investigation I found that error occurs in https://github.com/stellar/soroban-rpc/blob/main/cmd/crates/soroban-rpc/src/txn.rs#L321 becauseclassic_tx_fee + simulation.min_resource_fee = 4946582915
or 494.6582915 XLM.Why values that exceed U32_MAX is not allowed for fee? Does it mean that there is no way to install wasm in mainnet with soroban-cli?
What did you expect to see?
Max fee value fits I128_MAX
What did you see instead?
Error if
simulation.min_resource_fee
is more thanU32_MAX - DEFAULT_TRANSACTION_FEES=4294967195
The text was updated successfully, but these errors were encountered: