mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-06-09 20:01:05 +00:00
bump polkadot-sdk and polkavm (#94)
Signed-off-by: xermicus <cyrill@parity.io>
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"Baseline": 981,
|
||||
"Computation": 4145,
|
||||
"DivisionArithmetics": 40606,
|
||||
"ERC20": 47335,
|
||||
"Events": 1773,
|
||||
"FibonacciIterative": 3027,
|
||||
"Flipper": 3385,
|
||||
"SHA1": 33545
|
||||
"Baseline": 989,
|
||||
"Computation": 4153,
|
||||
"DivisionArithmetics": 40614,
|
||||
"ERC20": 47343,
|
||||
"Events": 1781,
|
||||
"FibonacciIterative": 3035,
|
||||
"Flipper": 3393,
|
||||
"SHA1": 33553
|
||||
}
|
||||
Binary file not shown.
@@ -26,10 +26,10 @@
|
||||
use std::time::Duration;
|
||||
|
||||
use hex::{FromHex, ToHex};
|
||||
use pallet_revive::AddressMapper;
|
||||
use pallet_revive::{AddressMapper, ExecReturnValue, InstantiateReturnValue};
|
||||
use polkadot_sdk::*;
|
||||
use polkadot_sdk::{
|
||||
pallet_revive::{CollectEvents, ContractExecResult, ContractInstantiateResult, DebugInfo},
|
||||
pallet_revive::{CollectEvents, ContractResult, DebugInfo},
|
||||
polkadot_runtime_common::BuildStorage,
|
||||
polkadot_sdk_frame::testing_prelude::*,
|
||||
sp_core::{H160, H256},
|
||||
@@ -179,11 +179,11 @@ impl VerifyCallExpectation {
|
||||
#[derive(Clone, Debug)]
|
||||
pub enum CallResult {
|
||||
Exec {
|
||||
result: ContractExecResult<Balance, EventRecord>,
|
||||
result: ContractResult<ExecReturnValue, Balance, EventRecord>,
|
||||
wall_time: Duration,
|
||||
},
|
||||
Instantiate {
|
||||
result: ContractInstantiateResult<Balance, EventRecord>,
|
||||
result: ContractResult<InstantiateReturnValue, Balance, EventRecord>,
|
||||
wall_time: Duration,
|
||||
code_hash: H256,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user