mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-06-12 17:31:02 +00:00
bump polkadot-sdk and polkavm (#94)
Signed-off-by: xermicus <cyrill@parity.io>
This commit is contained in:
Generated
+1759
-646
File diff suppressed because it is too large
Load Diff
+5
-5
@@ -51,10 +51,10 @@ path-slash = "0.2"
|
|||||||
rayon = "1.8"
|
rayon = "1.8"
|
||||||
clap = { version = "4", default-features = false, features = ["derive"] }
|
clap = { version = "4", default-features = false, features = ["derive"] }
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
polkavm-common = "0.12"
|
polkavm-common = "0.13"
|
||||||
polkavm-linker = "0.12"
|
polkavm-linker = "0.13"
|
||||||
polkavm-disassembler = "0.12"
|
polkavm-disassembler = "0.13"
|
||||||
polkavm = "0.12"
|
polkavm = "0.13"
|
||||||
alloy-primitives = { version = "0.8", features = ["serde"] }
|
alloy-primitives = { version = "0.8", features = ["serde"] }
|
||||||
alloy-sol-types = "0.8"
|
alloy-sol-types = "0.8"
|
||||||
alloy-genesis = "0.3"
|
alloy-genesis = "0.3"
|
||||||
@@ -67,7 +67,7 @@ log = { version = "0.4" }
|
|||||||
# polkadot-sdk and friends
|
# polkadot-sdk and friends
|
||||||
codec = { version = "3.6.12", default-features = false, package = "parity-scale-codec" }
|
codec = { version = "3.6.12", default-features = false, package = "parity-scale-codec" }
|
||||||
scale-info = { version = "2.11.1", default-features = false }
|
scale-info = { version = "2.11.1", default-features = false }
|
||||||
polkadot-sdk = { git = "https://github.com/paritytech/polkadot-sdk", rev = "5e0843e5a0fb601016dc1ccd46451a96049600e9" }
|
polkadot-sdk = { git = "https://github.com/paritytech/polkadot-sdk", rev = "aeebf2f383390f2f86527d70212162d5dbea8b93" }
|
||||||
|
|
||||||
# llvm
|
# llvm
|
||||||
[workspace.dependencies.inkwell]
|
[workspace.dependencies.inkwell]
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"Baseline": 981,
|
"Baseline": 989,
|
||||||
"Computation": 4145,
|
"Computation": 4153,
|
||||||
"DivisionArithmetics": 40606,
|
"DivisionArithmetics": 40614,
|
||||||
"ERC20": 47335,
|
"ERC20": 47343,
|
||||||
"Events": 1773,
|
"Events": 1781,
|
||||||
"FibonacciIterative": 3027,
|
"FibonacciIterative": 3035,
|
||||||
"Flipper": 3385,
|
"Flipper": 3393,
|
||||||
"SHA1": 33545
|
"SHA1": 33553
|
||||||
}
|
}
|
||||||
Binary file not shown.
@@ -26,10 +26,10 @@
|
|||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
use hex::{FromHex, ToHex};
|
use hex::{FromHex, ToHex};
|
||||||
use pallet_revive::AddressMapper;
|
use pallet_revive::{AddressMapper, ExecReturnValue, InstantiateReturnValue};
|
||||||
use polkadot_sdk::*;
|
use polkadot_sdk::*;
|
||||||
use polkadot_sdk::{
|
use polkadot_sdk::{
|
||||||
pallet_revive::{CollectEvents, ContractExecResult, ContractInstantiateResult, DebugInfo},
|
pallet_revive::{CollectEvents, ContractResult, DebugInfo},
|
||||||
polkadot_runtime_common::BuildStorage,
|
polkadot_runtime_common::BuildStorage,
|
||||||
polkadot_sdk_frame::testing_prelude::*,
|
polkadot_sdk_frame::testing_prelude::*,
|
||||||
sp_core::{H160, H256},
|
sp_core::{H160, H256},
|
||||||
@@ -179,11 +179,11 @@ impl VerifyCallExpectation {
|
|||||||
#[derive(Clone, Debug)]
|
#[derive(Clone, Debug)]
|
||||||
pub enum CallResult {
|
pub enum CallResult {
|
||||||
Exec {
|
Exec {
|
||||||
result: ContractExecResult<Balance, EventRecord>,
|
result: ContractResult<ExecReturnValue, Balance, EventRecord>,
|
||||||
wall_time: Duration,
|
wall_time: Duration,
|
||||||
},
|
},
|
||||||
Instantiate {
|
Instantiate {
|
||||||
result: ContractInstantiateResult<Balance, EventRecord>,
|
result: ContractResult<InstantiateReturnValue, Balance, EventRecord>,
|
||||||
wall_time: Duration,
|
wall_time: Duration,
|
||||||
code_hash: H256,
|
code_hash: H256,
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user