Skip to content

Commit bec58a9

Browse files
Merge branch 'main' into token-muxed-extension
2 parents 8bd5b78 + d534103 commit bec58a9

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

soroban-sdk/src/testutils/sign.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ pub mod ed25519 {
2424
}
2525

2626
impl<E: std::error::Error> std::error::Error for Error<E> {
27-
#[must_use]
2827
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
2928
match self {
3029
Self::XdrError(e) => e.source(),

soroban-token-sdk/src/metadata.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use soroban_sdk::{contracttype, symbol_short, unwrap::UnwrapOptimized, Env, Stri
22

33
const METADATA_KEY: Symbol = symbol_short!("METADATA");
44

5-
#[derive(Clone)]
5+
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
66
#[contracttype]
77
pub struct TokenMetadata {
88
pub decimal: u32,

0 commit comments

Comments
 (0)