-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom_journaled_state.rs
779 lines (709 loc) · 27.8 KB
/
custom_journaled_state.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
//! Based on https://github.com/bluealloy/revm/blob/17c4543ef559ef4011fa6c155bc981b1f504f33c/crates/context/src/journaled_state.rs
use std::{collections::hash_map::Entry, convert::Infallible};
use revm::{
context_interface::{
host::{SStoreResult, SelfDestructResult},
journaled_state::{AccountLoad, Eip7702CodeLoad, JournalCheckpoint, StateLoad, TransferError},
},
specification::hardfork::{SpecId, CANCUN, SPURIOUS_DRAGON},
state::{Account, EvmState, EvmStorageSlot, TransientStorage},
Database, JournalEntry,
};
use revm_bytecode::Bytecode;
use revm_database::InMemoryDB;
use revm_primitives::{Address, HashMap, HashSet, Log, B256, KECCAK_EMPTY, PRECOMPILE3, U256};
/// Custom journaled state where the database not part of the journaled state.
/// This is necessary to be able to mutably borrow both the database and the journaled state at the same time.
/// Based on [`revm::JournaledState`].
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct CustomJournaledState {
/// The current state
pub state: EvmState,
/// Transient storage that is discarded after every transaction.
///
/// See [EIP-1153](https://eips.ethereum.org/EIPS/eip-1153).
pub transient_storage: TransientStorage,
/// Emitted logs
pub logs: Vec<Log>,
/// The current call stack depth
pub depth: usize,
/// The journal of state changes, one for each call
pub journal: Vec<Vec<JournalEntry>>,
/// The spec ID for the EVM
///
/// This spec is used for two things:
///
/// - [EIP-161]: Prior to this EIP, Ethereum had separate definitions for empty and non-existing accounts.
/// - [EIP-6780]: `SELFDESTRUCT` only in same transaction
///
/// [EIP-161]: https://eips.ethereum.org/EIPS/eip-161
/// [EIP-6780]: https://eips.ethereum.org/EIPS/eip-6780
pub spec: SpecId,
/// Warm loaded addresses are used to check if loaded address
/// should be considered cold or warm loaded when the account
/// is first accessed.
///
/// Note that this not include newly loaded accounts, account and storage
/// is considered warm if it is found in the `State`.
pub warm_preloaded_addresses: HashSet<Address>,
}
impl CustomJournaledState {
pub fn new(spec: SpecId) -> Self {
Self {
state: HashMap::default(),
transient_storage: TransientStorage::default(),
logs: Vec::new(),
journal: vec![vec![]],
depth: 0,
spec,
warm_preloaded_addresses: HashSet::default(),
}
}
/// Return reference to state.
#[inline]
pub fn state(&mut self) -> &mut EvmState {
&mut self.state
}
/// Sets SpecId.
#[inline]
pub fn set_spec_id(&mut self, spec: SpecId) {
self.spec = spec;
}
/// Mark account as touched as only touched accounts will be added to state.
/// This is especially important for state clear where touched empty accounts needs to
/// be removed from state.
#[inline]
pub fn touch(&mut self, address: &Address) {
if let Some(account) = self.state.get_mut(address) {
Self::touch_account(self.journal.last_mut().unwrap(), address, account);
}
}
/// Mark account as touched.
#[inline]
fn touch_account(journal: &mut Vec<JournalEntry>, address: &Address, account: &mut Account) {
if !account.is_touched() {
journal.push(JournalEntry::AccountTouched { address: *address });
account.mark_touch();
}
}
/// Returns the _loaded_ [Account] for the given address.
///
/// This assumes that the account has already been loaded.
///
/// # Panics
///
/// Panics if the account has not been loaded and is missing from the state set.
#[inline]
pub fn account(&self, address: Address) -> &Account {
self.state.get(&address).expect("Account expected to be loaded") // Always assume that acc is already loaded
}
/// Set code and its hash to the account.
///
/// Note: Assume account is warm and that hash is calculated from code.
#[inline]
pub fn set_code_with_hash(&mut self, address: Address, code: Bytecode, hash: B256) {
let account = self.state.get_mut(&address).unwrap();
Self::touch_account(self.journal.last_mut().unwrap(), &address, account);
self.journal
.last_mut()
.unwrap()
.push(JournalEntry::CodeChange { address });
account.info.code_hash = hash;
account.info.code = Some(code);
}
/// Use it only if you know that acc is warm.
///
/// Assume account is warm.
#[inline]
pub fn set_code(&mut self, address: Address, code: Bytecode) {
let hash = code.hash_slow();
self.set_code_with_hash(address, code, hash)
}
#[inline]
pub fn inc_nonce(&mut self, address: Address) -> Option<u64> {
let account = self.state.get_mut(&address).unwrap();
// Check if nonce is going to overflow.
if account.info.nonce == u64::MAX {
return None;
}
Self::touch_account(self.journal.last_mut().unwrap(), &address, account);
self.journal
.last_mut()
.unwrap()
.push(JournalEntry::NonceChange { address });
account.info.nonce += 1;
Some(account.info.nonce)
}
/// Transfers balance from two accounts. Returns error if sender balance is not enough.
#[inline]
pub fn transfer(
&mut self,
database: &mut InMemoryDB,
from: &Address,
to: &Address,
balance: U256,
) -> Result<Option<TransferError>, Infallible> {
if balance.is_zero() {
self.load_account(database, *to)?;
let _ = self.load_account(database, *to)?;
let to_account = self.state.get_mut(to).unwrap();
Self::touch_account(self.journal.last_mut().unwrap(), to, to_account);
return Ok(None);
}
// load accounts
self.load_account(database, *from)?;
self.load_account(database, *to)?;
// sub balance from
let from_account = &mut self.state.get_mut(from).unwrap();
Self::touch_account(self.journal.last_mut().unwrap(), from, from_account);
let from_balance = &mut from_account.info.balance;
let Some(from_balance_incr) = from_balance.checked_sub(balance) else {
return Ok(Some(TransferError::OutOfFunds));
};
*from_balance = from_balance_incr;
// add balance to
let to_account = &mut self.state.get_mut(to).unwrap();
Self::touch_account(self.journal.last_mut().unwrap(), to, to_account);
let to_balance = &mut to_account.info.balance;
let Some(to_balance_decr) = to_balance.checked_add(balance) else {
return Ok(Some(TransferError::OverflowPayment));
};
*to_balance = to_balance_decr;
// Overflow of U256 balance is not possible to happen on mainnet. We don't bother to return funds from from_acc.
self.journal.last_mut().unwrap().push(JournalEntry::BalanceTransfer {
from: *from,
to: *to,
balance,
});
Ok(None)
}
/// Creates account or returns false if collision is detected.
///
/// There are few steps done:
/// 1. Make created account warm loaded (AccessList) and this should be done before subroutine checkpoint is
/// created.
/// 2. Check if there is collision of newly created account with existing one.
/// 3. Mark created account as created.
/// 4. Add fund to created account
/// 5. Increment nonce of created account if SpuriousDragon is active
/// 6. Decrease balance of caller account.
///
/// # Panics
///
/// Panics if the caller is not loaded inside of the EVM state.
/// This is should have been done inside `create_inner`.
#[inline]
pub fn create_account_checkpoint(
&mut self,
caller: Address,
target_address: Address,
balance: U256,
spec_id: SpecId,
) -> Result<JournalCheckpoint, TransferError> {
// Enter subroutine
let checkpoint = self.checkpoint();
// Fetch balance of caller.
let caller_acc = self.state.get_mut(&caller).unwrap();
// Check if caller has enough balance to send to the created contract.
if caller_acc.info.balance < balance {
self.checkpoint_revert(checkpoint);
return Err(TransferError::OutOfFunds);
}
// Newly created account is present, as we just loaded it.
let target_acc = self.state.get_mut(&target_address).unwrap();
let last_journal = self.journal.last_mut().unwrap();
// New account can be created if:
// Bytecode is not empty.
// Nonce is not zero
// Account is not precompile.
if target_acc.info.code_hash != KECCAK_EMPTY || target_acc.info.nonce != 0 {
self.checkpoint_revert(checkpoint);
return Err(TransferError::CreateCollision);
}
// set account status to created.
target_acc.mark_created();
// this entry will revert set nonce.
last_journal.push(JournalEntry::AccountCreated {
address: target_address,
});
target_acc.info.code = None;
// EIP-161: State trie clearing (invariant-preserving alternative)
if spec_id.is_enabled_in(SPURIOUS_DRAGON) {
// nonce is going to be reset to zero in AccountCreated journal entry.
target_acc.info.nonce = 1;
}
// touch account. This is important as for pre SpuriousDragon account could be
// saved even empty.
Self::touch_account(last_journal, &target_address, target_acc);
// Add balance to created account, as we already have target here.
let Some(new_balance) = target_acc.info.balance.checked_add(balance) else {
self.checkpoint_revert(checkpoint);
return Err(TransferError::OverflowPayment);
};
target_acc.info.balance = new_balance;
// safe to decrement for the caller as balance check is already done.
self.state.get_mut(&caller).unwrap().info.balance -= balance;
// add journal entry of transferred balance
last_journal.push(JournalEntry::BalanceTransfer {
from: caller,
to: target_address,
balance,
});
Ok(checkpoint)
}
/// Reverts all changes that happened in given journal entries.
#[inline]
fn journal_revert(
state: &mut EvmState,
transient_storage: &mut TransientStorage,
journal_entries: Vec<JournalEntry>,
is_spurious_dragon_enabled: bool,
) {
for entry in journal_entries.into_iter().rev() {
match entry {
JournalEntry::AccountWarmed { address } => {
state.get_mut(&address).unwrap().mark_cold();
}
JournalEntry::AccountTouched { address } => {
if is_spurious_dragon_enabled && address == PRECOMPILE3 {
continue;
}
// remove touched status
state.get_mut(&address).unwrap().unmark_touch();
}
JournalEntry::AccountDestroyed {
address,
target,
was_destroyed,
had_balance,
} => {
let account = state.get_mut(&address).unwrap();
// set previous state of selfdestructed flag, as there could be multiple
// selfdestructs in one transaction.
if was_destroyed {
// flag is still selfdestructed
account.mark_selfdestruct();
} else {
// flag that is not selfdestructed
account.unmark_selfdestruct();
}
account.info.balance += had_balance;
if address != target {
let target = state.get_mut(&target).unwrap();
target.info.balance -= had_balance;
}
}
JournalEntry::BalanceTransfer { from, to, balance } => {
// we don't need to check overflow and underflow when adding and subtracting the balance.
let from = state.get_mut(&from).unwrap();
from.info.balance += balance;
let to = state.get_mut(&to).unwrap();
to.info.balance -= balance;
}
JournalEntry::NonceChange { address } => {
state.get_mut(&address).unwrap().info.nonce -= 1;
}
JournalEntry::AccountCreated { address } => {
let account = &mut state.get_mut(&address).unwrap();
account.unmark_created();
account.storage.values_mut().for_each(|slot| slot.mark_cold());
account.info.nonce = 0;
}
JournalEntry::StorageWarmed { address, key } => {
state
.get_mut(&address)
.unwrap()
.storage
.get_mut(&key)
.unwrap()
.mark_cold();
}
JournalEntry::StorageChanged {
address,
key,
had_value,
} => {
state
.get_mut(&address)
.unwrap()
.storage
.get_mut(&key)
.unwrap()
.present_value = had_value;
}
JournalEntry::TransientStorageChange {
address,
key,
had_value,
} => {
let tkey = (address, key);
if had_value.is_zero() {
// if previous value is zero, remove it
transient_storage.remove(&tkey);
} else {
// if not zero, reinsert old value to transient storage.
transient_storage.insert(tkey, had_value);
}
}
JournalEntry::CodeChange { address } => {
let acc = state.get_mut(&address).unwrap();
acc.info.code_hash = KECCAK_EMPTY;
acc.info.code = None;
}
}
}
}
/// Makes a checkpoint that in case of Revert can bring back state to this point.
#[inline]
pub fn checkpoint(&mut self) -> JournalCheckpoint {
let checkpoint = JournalCheckpoint {
log_i: self.logs.len(),
journal_i: self.journal.len(),
};
self.depth += 1;
self.journal.push(Default::default());
checkpoint
}
/// Commits the checkpoint.
#[inline]
pub fn checkpoint_commit(&mut self) {
self.depth -= 1;
}
/// Reverts all changes to state until given checkpoint.
#[inline]
pub fn checkpoint_revert(&mut self, checkpoint: JournalCheckpoint) {
let is_spurious_dragon_enabled = self.spec.is_enabled_in(SPURIOUS_DRAGON);
let state = &mut self.state;
let transient_storage = &mut self.transient_storage;
self.depth -= 1;
// iterate over last N journals sets and revert our global state
let leng = self.journal.len();
self.journal
.iter_mut()
.rev()
.take(leng - checkpoint.journal_i)
.for_each(|cs| {
Self::journal_revert(state, transient_storage, std::mem::take(cs), is_spurious_dragon_enabled)
});
self.logs.truncate(checkpoint.log_i);
self.journal.truncate(checkpoint.journal_i);
}
/// Performs selfdestruct action.
/// Transfers balance from address to target. Check if target exist/is_cold
///
/// Note: Balance will be lost if address and target are the same BUT when
/// current spec enables Cancun, this happens only when the account associated to address
/// is created in the same tx
///
/// # References:
/// * <https://github.com/ethereum/go-ethereum/blob/141cd425310b503c5678e674a8c3872cf46b7086/core/vm/instructions.go#L832-L833>
/// * <https://github.com/ethereum/go-ethereum/blob/141cd425310b503c5678e674a8c3872cf46b7086/core/state/statedb.go#L449>
/// * <https://eips.ethereum.org/EIPS/eip-6780>
#[inline]
pub fn selfdestruct(
&mut self,
database: &mut InMemoryDB,
address: Address,
target: Address,
) -> Result<StateLoad<SelfDestructResult>, Infallible> {
let spec = self.spec;
let account_load = self.load_account(database, target)?;
let is_cold = account_load.is_cold;
let is_empty = account_load.state_clear_aware_is_empty(spec);
if address != target {
// Both accounts are loaded before this point, `address` as we execute its contract.
// and `target` at the beginning of the function.
let acc_balance = self.state.get_mut(&address).unwrap().info.balance;
let target_account = self.state.get_mut(&target).unwrap();
Self::touch_account(self.journal.last_mut().unwrap(), &target, target_account);
target_account.info.balance += acc_balance;
}
let acc = self.state.get_mut(&address).unwrap();
let balance = acc.info.balance;
let previously_destroyed = acc.is_selfdestructed();
let is_cancun_enabled = self.spec.is_enabled_in(CANCUN);
// EIP-6780 (Cancun hard-fork): selfdestruct only if contract is created in the same tx
let journal_entry = if acc.is_created() || !is_cancun_enabled {
acc.mark_selfdestruct();
acc.info.balance = U256::ZERO;
Some(JournalEntry::AccountDestroyed {
address,
target,
was_destroyed: previously_destroyed,
had_balance: balance,
})
} else if address != target {
acc.info.balance = U256::ZERO;
Some(JournalEntry::BalanceTransfer {
from: address,
to: target,
balance,
})
} else {
// State is not changed:
// * if we are after Cancun upgrade and
// * Selfdestruct account that is created in the same transaction and
// * Specify the target is same as selfdestructed account. The balance stays unchanged.
None
};
if let Some(entry) = journal_entry {
self.journal.last_mut().unwrap().push(entry);
};
Ok(StateLoad {
data: SelfDestructResult {
had_value: !balance.is_zero(),
target_exists: !is_empty,
previously_destroyed,
},
is_cold,
})
}
/// Initial load of account. This load will not be tracked inside journal
#[inline]
pub fn initial_account_load(
&mut self,
database: &mut InMemoryDB,
address: Address,
storage_keys: impl IntoIterator<Item = U256>,
) -> Result<&mut Account, Infallible> {
// load or get account.
let account = match self.state.entry(address) {
Entry::Occupied(entry) => entry.into_mut(),
Entry::Vacant(vac) => vac.insert(
database
.basic(address)?
.map(|i| i.into())
.unwrap_or(Account::new_not_existing()),
),
};
// preload storages.
for storage_key in storage_keys.into_iter() {
if let Entry::Vacant(entry) = account.storage.entry(storage_key) {
let storage = database.storage(address, storage_key)?;
entry.insert(EvmStorageSlot::new(storage));
}
}
Ok(account)
}
/// Loads account into memory. return if it is cold or warm accessed
#[inline]
pub fn load_account(
&mut self,
database: &mut InMemoryDB,
address: Address,
) -> Result<StateLoad<&mut Account>, Infallible> {
self.load_account_optional(database, address, false)
}
#[inline]
pub fn load_account_delegated(
&mut self,
database: &mut InMemoryDB,
address: Address,
) -> Result<AccountLoad, Infallible> {
let spec = self.spec;
let account = self.load_code(database, address)?;
let is_empty = account.state_clear_aware_is_empty(spec);
let mut account_load = AccountLoad {
is_empty,
load: Eip7702CodeLoad::new_not_delegated((), account.is_cold),
};
// load delegate code if account is EIP-7702
if let Some(Bytecode::Eip7702(code)) = &account.info.code {
let address = code.address();
let delegate_account = self.load_account(database, address)?;
account_load.load.set_delegate_load(delegate_account.is_cold);
}
Ok(account_load)
}
pub fn load_code(
&mut self,
database: &mut InMemoryDB,
address: Address,
) -> Result<StateLoad<&mut Account>, Infallible> {
self.load_account_optional(database, address, true)
}
/// Loads code
#[inline]
pub fn load_account_optional(
&mut self,
database: &mut InMemoryDB,
address: Address,
load_code: bool,
) -> Result<StateLoad<&mut Account>, Infallible> {
let load = match self.state.entry(address) {
Entry::Occupied(entry) => {
let account = entry.into_mut();
let is_cold = account.mark_warm();
StateLoad { data: account, is_cold }
}
Entry::Vacant(vac) => {
let account = if let Some(account) = database.basic(address)? {
account.into()
} else {
Account::new_not_existing()
};
// precompiles are warm loaded so we need to take that into account
let is_cold = !self.warm_preloaded_addresses.contains(&address);
StateLoad {
data: vac.insert(account),
is_cold,
}
}
};
// journal loading of cold account.
if load.is_cold {
self.journal
.last_mut()
.unwrap()
.push(JournalEntry::AccountWarmed { address });
}
if load_code {
let info = &mut load.data.info;
if info.code.is_none() {
if info.code_hash == KECCAK_EMPTY {
let empty = Bytecode::default();
info.code = Some(empty);
} else {
let code = database.code_by_hash(info.code_hash)?;
info.code = Some(code);
}
}
}
Ok(load)
}
/// Loads storage slot.
///
/// # Panics
///
/// Panics if the account is not present in the state.
#[inline]
pub fn sload(
&mut self,
database: &mut InMemoryDB,
address: Address,
key: U256,
) -> Result<StateLoad<U256>, Infallible> {
// assume acc is warm
let account = self.state.get_mut(&address).unwrap();
// only if account is created in this tx we can assume that storage is empty.
let is_newly_created = account.is_created();
let (value, is_cold) = match account.storage.entry(key) {
Entry::Occupied(occ) => {
let slot = occ.into_mut();
let is_cold = slot.mark_warm();
(slot.present_value, is_cold)
}
Entry::Vacant(vac) => {
// if storage was cleared, we don't need to ping db.
let value = if is_newly_created {
U256::ZERO
} else {
database.storage(address, key)?
};
vac.insert(EvmStorageSlot::new(value));
(value, true)
}
};
if is_cold {
// add it to journal as cold loaded.
self.journal
.last_mut()
.unwrap()
.push(JournalEntry::StorageWarmed { address, key });
}
Ok(StateLoad::new(value, is_cold))
}
/// Stores storage slot.
///
/// And returns (original,present,new) slot value.
///
/// **Note**: Account should already be present in our state.
#[inline]
pub fn sstore(
&mut self,
database: &mut InMemoryDB,
address: Address,
key: U256,
new: U256,
) -> Result<StateLoad<SStoreResult>, Infallible> {
// assume that acc exists and load the slot.
let present = self.sload(database, address, key)?;
let acc = self.state.get_mut(&address).unwrap();
// if there is no original value in dirty return present value, that is our original.
let slot = acc.storage.get_mut(&key).unwrap();
// new value is same as present, we don't need to do anything
if present.data == new {
return Ok(StateLoad::new(
SStoreResult {
original_value: slot.original_value(),
present_value: present.data,
new_value: new,
},
present.is_cold,
));
}
self.journal.last_mut().unwrap().push(JournalEntry::StorageChanged {
address,
key,
had_value: present.data,
});
// insert value into present state.
slot.present_value = new;
Ok(StateLoad::new(
SStoreResult {
original_value: slot.original_value(),
present_value: present.data,
new_value: new,
},
present.is_cold,
))
}
/// Read transient storage tied to the account.
///
/// EIP-1153: Transient storage opcodes
#[inline]
pub fn tload(&mut self, address: Address, key: U256) -> U256 {
self.transient_storage.get(&(address, key)).copied().unwrap_or_default()
}
/// Store transient storage tied to the account.
///
/// If values is different add entry to the journal
/// so that old state can be reverted if that action is needed.
///
/// EIP-1153: Transient storage opcodes
#[inline]
pub fn tstore(&mut self, address: Address, key: U256, new: U256) {
let had_value = if new.is_zero() {
// if new values is zero, remove entry from transient storage.
// if previous values was some insert it inside journal.
// If it is none nothing should be inserted.
self.transient_storage.remove(&(address, key))
} else {
// insert values
let previous_value = self.transient_storage.insert((address, key), new).unwrap_or_default();
// check if previous value is same
if previous_value != new {
// if it is different, insert previous values inside journal.
Some(previous_value)
} else {
None
}
};
if let Some(had_value) = had_value {
// insert in journal only if value was changed.
self.journal
.last_mut()
.unwrap()
.push(JournalEntry::TransientStorageChange {
address,
key,
had_value,
});
}
}
/// Pushes log into subroutine.
#[inline]
pub fn log(&mut self, log: Log) {
self.logs.push(log);
}
}