Skip to content

Commit 25c00bf

Browse files
authored
add signer address (#594)
1 parent 0e29981 commit 25c00bf

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* Fix blank email validation for contacts and identities
66
* Add different file size limits for pictures (avatar/logo - 20k) and documents (invoices, registration, passport - 1mb) as well as an upper limit for bill files (100)
77
* This limit is checked at creation/update time, not at the time of uploading a temporary file
8+
* Add the address of the signer for the calls to `endorsements` and `past_endorsees`
89

910
# 0.4.2
1011

crates/bcr-ebill-core/src/contact/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ pub struct BillIdentParticipant {
161161
#[derive(Debug, Serialize, Deserialize, Clone)]
162162
pub enum LightBillParticipant {
163163
Anon(LightBillAnonParticipant),
164-
Ident(LightBillIdentParticipant),
164+
Ident(LightBillIdentParticipantWithAddress),
165165
}
166166

167167
#[derive(Debug, Serialize, Deserialize, Clone)]

crates/bcr-ebill-wasm/src/data/bill.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ impl From<LightBillIdentParticipantWithAddress> for LightBillIdentParticipantWit
851851
#[tsify(into_wasm_abi)]
852852
pub enum LightBillParticipantWeb {
853853
Anon(LightBillAnonParticipantWeb),
854-
Ident(LightBillIdentParticipantWeb),
854+
Ident(LightBillIdentParticipantWithAddressWeb),
855855
}
856856

857857
impl From<LightBillParticipant> for LightBillParticipantWeb {

0 commit comments

Comments
 (0)