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
use crate::{
common::{
fuel_asm::Word,
fuel_storage::{
StorageAsRef,
StorageInspect,
},
fuel_tx::{
field::{
Inputs,
Outputs,
},
Bytes32,
Cacheable,
Chargeable,
Checked,
ConsensusParameters,
ContractId,
Create,
Input,
Output,
Script,
Transaction,
TxId,
UniqueIdentifier,
UtxoId,
},
fuel_types::MessageId,
fuel_vm::storage::ContractsRawCode,
},
db::{
Coins,
Error as DbStateError,
KvStoreError,
Messages,
},
model::{
ArcPoolTx,
BlockHeight,
BlockId,
Coin,
Message,
TxInfo,
},
};
use derive_more::{
Deref,
DerefMut,
};
use fuel_vm::prelude::{
Interpreter,
PredicateStorage,
ProgramState,
};
use std::{
fmt::Debug,
sync::Arc,
};
use tai64::Tai64;
use thiserror::Error;
use tokio::sync::{
mpsc,
oneshot,
};
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum TransactionStatus {
Submitted {
time: Tai64,
},
Success {
block_id: BlockId,
time: Tai64,
result: Option<ProgramState>,
},
SqueezedOut {
reason: String,
},
Failed {
block_id: BlockId,
time: Tai64,
reason: String,
result: Option<ProgramState>,
},
}
#[derive(Debug, Eq, PartialEq)]
pub enum PoolTransaction {
Script(Checked<Script>),
Create(Checked<Create>),
}
impl Chargeable for PoolTransaction {
fn price(&self) -> Word {
match self {
PoolTransaction::Script(script) => script.transaction().price(),
PoolTransaction::Create(create) => create.transaction().price(),
}
}
fn limit(&self) -> Word {
match self {
PoolTransaction::Script(script) => script.transaction().limit(),
PoolTransaction::Create(create) => create.transaction().limit(),
}
}
fn metered_bytes_size(&self) -> usize {
match self {
PoolTransaction::Script(script) => script.transaction().metered_bytes_size(),
PoolTransaction::Create(create) => create.transaction().metered_bytes_size(),
}
}
}
impl UniqueIdentifier for PoolTransaction {
fn id(&self) -> Bytes32 {
match self {
PoolTransaction::Script(script) => script.transaction().id(),
PoolTransaction::Create(create) => create.transaction().id(),
}
}
}
impl PoolTransaction {
pub fn is_computed(&self) -> bool {
match self {
PoolTransaction::Script(script) => script.transaction().is_computed(),
PoolTransaction::Create(create) => create.transaction().is_computed(),
}
}
pub fn inputs(&self) -> &Vec<Input> {
match self {
PoolTransaction::Script(script) => script.transaction().inputs(),
PoolTransaction::Create(create) => create.transaction().inputs(),
}
}
pub fn outputs(&self) -> &Vec<Output> {
match self {
PoolTransaction::Script(script) => script.transaction().outputs(),
PoolTransaction::Create(create) => create.transaction().outputs(),
}
}
pub fn max_gas(&self) -> Word {
match self {
PoolTransaction::Script(script) => script.metadata().fee.max_gas(),
PoolTransaction::Create(create) => create.metadata().fee.max_gas(),
}
}
pub fn check_predicates(&self, params: ConsensusParameters) -> bool {
match self {
PoolTransaction::Script(script) => {
Interpreter::<PredicateStorage>::check_predicates(script.clone(), params)
}
PoolTransaction::Create(create) => {
Interpreter::<PredicateStorage>::check_predicates(create.clone(), params)
}
}
}
}
impl From<&PoolTransaction> for Transaction {
fn from(tx: &PoolTransaction) -> Self {
match tx {
PoolTransaction::Script(script) => {
Transaction::Script(script.transaction().clone())
}
PoolTransaction::Create(create) => {
Transaction::Create(create.transaction().clone())
}
}
}
}
impl From<Checked<Script>> for PoolTransaction {
fn from(checked: Checked<Script>) -> Self {
Self::Script(checked)
}
}
impl From<Checked<Create>> for PoolTransaction {
fn from(checked: Checked<Create>) -> Self {
Self::Create(checked)
}
}
#[derive(Debug)]
pub struct InsertionResult {
pub inserted: ArcPoolTx,
pub removed: Vec<ArcPoolTx>,
}
pub trait TxPoolDb:
StorageInspect<Coins, Error = KvStoreError>
+ StorageInspect<ContractsRawCode, Error = DbStateError>
+ StorageInspect<Messages, Error = KvStoreError>
+ Send
+ Sync
{
fn utxo(&self, utxo_id: &UtxoId) -> Result<Option<Coin>, KvStoreError> {
self.storage::<Coins>()
.get(utxo_id)
.map(|t| t.map(|t| t.as_ref().clone()))
}
fn contract_exist(&self, contract_id: &ContractId) -> Result<bool, DbStateError> {
self.storage::<ContractsRawCode>().contains_key(contract_id)
}
fn message(&self, message_id: &MessageId) -> Result<Option<Message>, KvStoreError> {
self.storage::<Messages>()
.get(message_id)
.map(|t| t.map(|t| t.as_ref().clone()))
}
fn current_block_height(&self) -> Result<BlockHeight, KvStoreError>;
}
#[derive(Clone, Deref, DerefMut)]
pub struct Sender(mpsc::Sender<TxPoolMpsc>);
impl Sender {
pub fn new(sender: mpsc::Sender<TxPoolMpsc>) -> Self {
Self(sender)
}
pub async fn insert(
&self,
txs: Vec<Arc<Transaction>>,
) -> anyhow::Result<Vec<anyhow::Result<InsertionResult>>> {
let (response, receiver) = oneshot::channel();
self.send(TxPoolMpsc::Insert { txs, response }).await?;
receiver.await.map_err(Into::into)
}
pub async fn find(&self, ids: Vec<TxId>) -> anyhow::Result<Vec<Option<TxInfo>>> {
let (response, receiver) = oneshot::channel();
self.send(TxPoolMpsc::Find { ids, response }).await?;
receiver.await.map_err(Into::into)
}
pub async fn find_one(&self, id: TxId) -> anyhow::Result<Option<TxInfo>> {
let (response, receiver) = oneshot::channel();
self.send(TxPoolMpsc::FindOne { id, response }).await?;
receiver.await.map_err(Into::into)
}
pub async fn find_dependent(&self, ids: Vec<TxId>) -> anyhow::Result<Vec<ArcPoolTx>> {
let (response, receiver) = oneshot::channel();
self.send(TxPoolMpsc::FindDependent { ids, response })
.await?;
receiver.await.map_err(Into::into)
}
pub async fn filter_by_negative(&self, ids: Vec<TxId>) -> anyhow::Result<Vec<TxId>> {
let (response, receiver) = oneshot::channel();
self.send(TxPoolMpsc::FilterByNegative { ids, response })
.await?;
receiver.await.map_err(Into::into)
}
pub async fn includable(&self) -> anyhow::Result<Vec<ArcPoolTx>> {
let (response, receiver) = oneshot::channel();
self.send(TxPoolMpsc::Includable { response }).await?;
receiver.await.map_err(Into::into)
}
pub async fn remove(&self, ids: Vec<TxId>) -> anyhow::Result<Vec<ArcPoolTx>> {
let (response, receiver) = oneshot::channel();
self.send(TxPoolMpsc::Remove { ids, response }).await?;
receiver.await.map_err(Into::into)
}
pub fn channel(buffer: usize) -> (Sender, mpsc::Receiver<TxPoolMpsc>) {
let (sender, reciever) = mpsc::channel(buffer);
(Sender(sender), reciever)
}
}
#[async_trait::async_trait]
impl super::poa_coordinator::TransactionPool for Sender {
async fn pending_number(&self) -> anyhow::Result<usize> {
let (response, receiver) = oneshot::channel();
self.send(TxPoolMpsc::PendingNumber { response }).await?;
receiver.await.map_err(Into::into)
}
async fn total_consumable_gas(&self) -> anyhow::Result<u64> {
let (response, receiver) = oneshot::channel();
self.send(TxPoolMpsc::ConsumableGas { response }).await?;
receiver.await.map_err(Into::into)
}
async fn remove_txs(&mut self, ids: Vec<TxId>) -> anyhow::Result<Vec<ArcPoolTx>> {
let (response, receiver) = oneshot::channel();
self.send(TxPoolMpsc::Remove { ids, response }).await?;
receiver.await.map_err(Into::into)
}
}
#[derive(Debug)]
pub enum TxPoolMpsc {
PendingNumber { response: oneshot::Sender<usize> },
ConsumableGas { response: oneshot::Sender<u64> },
Includable {
response: oneshot::Sender<Vec<ArcPoolTx>>,
},
Insert {
txs: Vec<Arc<Transaction>>,
response: oneshot::Sender<Vec<anyhow::Result<InsertionResult>>>,
},
Find {
ids: Vec<TxId>,
response: oneshot::Sender<Vec<Option<TxInfo>>>,
},
FindOne {
id: TxId,
response: oneshot::Sender<Option<TxInfo>>,
},
FindDependent {
ids: Vec<TxId>,
response: oneshot::Sender<Vec<ArcPoolTx>>,
},
Remove {
ids: Vec<TxId>,
response: oneshot::Sender<Vec<ArcPoolTx>>,
},
FilterByNegative {
ids: Vec<TxId>,
response: oneshot::Sender<Vec<TxId>>,
},
Stop,
}
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum TxStatus {
Submitted,
Completed,
SqueezedOut { reason: Error },
}
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct TxUpdate {
tx_id: Bytes32,
squeezed_out: Option<Error>,
}
impl TxUpdate {
pub fn updated(tx_id: Bytes32) -> Self {
Self {
tx_id,
squeezed_out: None,
}
}
pub fn squeezed_out(tx_id: Bytes32, reason: Error) -> Self {
Self {
tx_id,
squeezed_out: Some(reason),
}
}
pub fn tx_id(&self) -> &Bytes32 {
&self.tx_id
}
pub fn was_squeezed_out(&self) -> bool {
self.squeezed_out.is_some()
}
pub fn into_squeezed_out_reason(self) -> Option<Error> {
self.squeezed_out
}
}
#[derive(Error, Debug, PartialEq, Eq, Clone)]
#[non_exhaustive]
pub enum Error {
#[error("TxPool required that transaction contains metadata")]
NoMetadata,
#[error("TxPool doesn't support this type of transaction.")]
NotSupportedTransactionType,
#[error("Transaction is not inserted. Hash is already known")]
NotInsertedTxKnown,
#[error("Transaction is not inserted. Pool limit is hit, try to increase gas_price")]
NotInsertedLimitHit,
#[error("Transaction is not inserted. The gas price is too low.")]
NotInsertedGasPriceTooLow,
#[error(
"Transaction is not inserted. More priced tx {0:#x} already spend this UTXO output: {1:#x}"
)]
NotInsertedCollision(TxId, UtxoId),
#[error(
"Transaction is not inserted. More priced tx has created contract with ContractId {0:#x}"
)]
NotInsertedCollisionContractId(ContractId),
#[error(
"Transaction is not inserted. A higher priced tx {0:#x} is already spending this messageId: {1:#x}"
)]
NotInsertedCollisionMessageId(TxId, MessageId),
#[error(
"Transaction is not inserted. Dependent UTXO output is not existing: {0:#x}"
)]
NotInsertedOutputNotExisting(UtxoId),
#[error("Transaction is not inserted. UTXO input contract is not existing: {0:#x}")]
NotInsertedInputContractNotExisting(ContractId),
#[error("Transaction is not inserted. ContractId is already taken {0:#x}")]
NotInsertedContractIdAlreadyTaken(ContractId),
#[error("Transaction is not inserted. UTXO is not existing: {0:#x}")]
NotInsertedInputUtxoIdNotExisting(UtxoId),
#[error("Transaction is not inserted. UTXO is spent: {0:#x}")]
NotInsertedInputUtxoIdSpent(UtxoId),
#[error("Transaction is not inserted. Message is spent: {0:#x}")]
NotInsertedInputMessageIdSpent(MessageId),
#[error("Transaction is not inserted. Message id {0:#x} does not match any received message from the DA layer.")]
NotInsertedInputMessageUnknown(MessageId),
#[error(
"Transaction is not inserted. UTXO requires Contract input {0:#x} that is priced lower"
)]
NotInsertedContractPricedLower(ContractId),
#[error("Transaction is not inserted. Input output mismatch. Coin owner is different from expected input")]
NotInsertedIoWrongOwner,
#[error("Transaction is not inserted. Input output mismatch. Coin output does not match expected input")]
NotInsertedIoWrongAmount,
#[error("Transaction is not inserted. Input output mismatch. Coin output asset_id does not match expected inputs")]
NotInsertedIoWrongAssetId,
#[error("Transaction is not inserted. The computed message id doesn't match the provided message id.")]
NotInsertedIoWrongMessageId,
#[error(
"Transaction is not inserted. Input output mismatch. Expected coin but output is contract"
)]
NotInsertedIoContractOutput,
#[error(
"Transaction is not inserted. Input output mismatch. Expected coin but output is message"
)]
NotInsertedIoMessageInput,
#[error("Transaction is not inserted. Maximum depth of dependent transaction chain reached")]
NotInsertedMaxDepth,
#[error("Transaction exceeds the max gas per block limit. Tx gas: {tx_gas}, block limit {block_limit}")]
NotInsertedMaxGasLimit { tx_gas: Word, block_limit: Word },
#[error("Transaction removed.")]
Removed,
#[error("Transaction squeezed out because {0}")]
SqueezedOut(String),
}