diff --git a/tuxedo-core/src/types.rs b/tuxedo-core/src/types.rs index b2c99def..87079952 100644 --- a/tuxedo-core/src/types.rs +++ b/tuxedo-core/src/types.rs @@ -99,11 +99,11 @@ impl Decode for Transaction { } } -// We must implement this Extrinsic trait to use our Transaction type as the Block's Transaction type -// See https://paritytech.github.io/substrate/master/sp_runtime/traits/trait.Block.html#associatedtype.Extrinsic +// We must implement this Extrinsic trait to use our Transaction type as the Block's associated Extrinsic type. +// See https://paritytech.github.io/polkadot-sdk/master/sp_runtime/traits/trait.Block.html#associatedtype.Extrinsic // // This trait's design has a preference for transactions that will have a single signature over the -// entire block, so it is not very useful for us. We still need to implement it to satisfy the bound, +// entire transaction, so it is not very useful for us. We still need to implement it to satisfy the bound, // so we do a minimal implementation. impl Extrinsic for Transaction where