Skip to content

Commit 502a673

Browse files
committed
fix: update unit test for sip31 addrs
1 parent 1a02631 commit 502a673

File tree

1 file changed

+2
-3
lines changed
  • stackslib/src/chainstate/stacks/boot

1 file changed

+2
-3
lines changed

stackslib/src/chainstate/stacks/boot/mod.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ pub const SIP_031_MAINNET_ADDR: LazyLock<StacksAddress> = LazyLock::new(|| {
101101
});
102102

103103
/// The initial recipient address for SIP-031 on testnet.
104-
/// TODO: replace with actual address
105104
pub const SIP_031_TESTNET_ADDR: LazyLock<StacksAddress> = LazyLock::new(|| {
106105
StacksAddress::from_string("ST1QCN9YMXMJPJ0Y5EMR627FCWDXQWT1CRK9CWN23").unwrap()
107106
});
@@ -5905,11 +5904,11 @@ pub mod test {
59055904
fn test_sip031_addrs() {
59065905
assert_eq!(
59075906
SIP_031_MAINNET_ADDR.to_string(),
5908-
"SP1A2K3ENNA6QQ7G8DVJXM24T6QMBDVS7D0TRTAR5"
5907+
"SM1Z6BP8PDKYKXTZXXSKXFEY6NQ7RAM7DAEAYR045"
59095908
);
59105909
assert_eq!(
59115910
SIP_031_TESTNET_ADDR.to_string(),
5912-
"ST1PQHQKV0RJXZFY1DGX8MNSNYVE3VGZJSRTPGZGM"
5911+
"ST1QCN9YMXMJPJ0Y5EMR627FCWDXQWT1CRK9CWN23"
59135912
);
59145913

59155914
assert_eq!(

0 commit comments

Comments
 (0)