Skip to content

Commit

Permalink
remarks: Add pool ID to loan variant (#1682)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdamian authored Jan 8, 2024
1 parent c93f96f commit 045aed8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/common/src/remarks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.

use cfg_primitives::LoanId;
use cfg_primitives::{LoanId, PoolId};
use frame_support::{dispatch::TypeInfo, parameter_types, BoundedVec};
use sp_runtime::codec::{Decode, Encode};
use sp_std::vec;
Expand All @@ -29,7 +29,7 @@ pub enum Remark {
Named(BoundedVec<u8, MaxNamedRemark>),

/// Association with a loan
Loan(LoanId),
Loan(PoolId, LoanId),
}

impl Default for Remark {
Expand Down

0 comments on commit 045aed8

Please sign in to comment.