call and create set uncapped resource limits (#161)

- polkadot-sdk#6890 companion
- Adjust the gas price constant for the required polkadot-sdk version as a drive-by
This commit is contained in:
Cyrill Leutwiler
2025-01-15 17:32:31 +01:00
committed by GitHub
parent 4fbfb97b9e
commit ad805543b3
5 changed files with 404 additions and 389 deletions
+1 -1
View File
@@ -26,6 +26,6 @@ pragma solidity ^0.8;
contract GasPrice {
constructor() payable {
assert(tx.gasprice == 1);
assert(tx.gasprice == 1000);
}
}